mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 18:32:50 +00:00
21 lines
466 B
JavaScript
21 lines
466 B
JavaScript
var wellknown = require('./index');
|
|
|
|
module.exports['Find by key'] = function(test) {
|
|
test.ok(wellknown('Gmail'));
|
|
test.done();
|
|
};
|
|
|
|
module.exports['Find by alias'] = function(test) {
|
|
test.ok(wellknown('Google Mail'));
|
|
test.done();
|
|
};
|
|
|
|
module.exports['Find by domain'] = function(test) {
|
|
test.ok(wellknown('GoogleMail.com'));
|
|
test.done();
|
|
};
|
|
|
|
module.exports['No match'] = function(test) {
|
|
test.ok(!wellknown('zzzzzz'));
|
|
test.done();
|
|
}; |