aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/unit/blacklister-test.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/unit/blacklister-test.js b/test/unit/blacklister-test.js
index 47e9b3c6b..ce110491c 100644
--- a/test/unit/blacklister-test.js
+++ b/test/unit/blacklister-test.js
@@ -19,6 +19,18 @@ describe('blacklister', function () {
var result = isPhish({ hostname: 'example.com' })
assert.equal(result, false)
})
+ it('should not flag the ropsten faucet domains', function () {
+ var result = isPhish({ hostname: 'faucet.metamask.io' })
+ assert.equal(result, false)
+ })
+ it('should not flag the mascara domain', function () {
+ var result = isPhish({ hostname: 'zero.metamask.io' })
+ assert.equal(result, false)
+ })
+ it('should not flag the mascara-faucet domain', function () {
+ var result = isPhish({ hostname: 'zero-faucet.metamask.io' })
+ assert.equal(result, false)
+ })
})
})