1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/blacklister-test.js

25 lines
747 B
JavaScript
Raw Normal View History

2017-07-27 00:24:57 +02:00
const assert = require('assert')
const isPhish = require('../../app/scripts/lib/is-phish')
2017-07-27 00:24:57 +02:00
describe('blacklister', function () {
describe('#isPhish', function () {
it('should not flag whitelisted values', function () {
var result = isPhish({ hostname: 'www.metamask.io' })
2017-07-27 00:24:57 +02:00
assert(!result)
})
it('should flag explicit values', function () {
var result = isPhish({ hostname: 'metamask.com' })
2017-07-27 00:24:57 +02:00
assert(result)
})
it('should flag levenshtein values', function () {
var result = isPhish({ hostname: 'metmask.com' })
2017-07-27 00:24:57 +02:00
assert(result)
})
it('should not flag not-even-close values', function () {
var result = isPhish({ hostname: 'example.com' })
2017-07-27 00:24:57 +02:00
assert(!result)
})
})
})