aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/unit/blacklister-test.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/unit/blacklister-test.js b/test/unit/blacklister-test.js
new file mode 100644
index 000000000..1badc2c8f
--- /dev/null
+++ b/test/unit/blacklister-test.js
@@ -0,0 +1,24 @@
+const assert = require('assert')
+const isPhish = require('../../app/scripts/lib/is-phish')
+
+describe('blacklister', function () {
+ describe('#isPhish', function () {
+ it('should not flag whitelisted values', function () {
+ var result = isPhish({ hostname: 'www.metamask.io' })
+ assert(!result)
+ })
+ it('should flag explicit values', function () {
+ var result = isPhish({ hostname: 'metamask.com' })
+ assert(result)
+ })
+ it('should flag levenshtein values', function () {
+ var result = isPhish({ hostname: 'metmask.com' })
+ assert(result)
+ })
+ it('should not flag not-even-close values', function () {
+ var result = isPhish({ hostname: 'example.com' })
+ assert(!result)
+ })
+ })
+})
+