disposable-email-domains
Version:
A list of [disposable email domains](http://en.wikipedia.org/wiki/Disposable_email_address) like `mailinator.com`. You can use it to detect or block disposable accounts in your signup process. Exact domain matches are found in [index.json](https://github.
34 lines (31 loc) • 987 B
JavaScript
const _ = require('lodash');
const domains = require('../index');
const chai = require('chai');
const expect = chai.expect;
chai.use(require("chai-sorted"));
chai.use(require('./helpers/lowercase'));
chai.use(require('./helpers/isFQDN'));
chai.use(require('./helpers/notInWildcard'));
describe('Domains', function(){
it('should be an array', function(){
expect(domains).to.be.a('array');
});
it('should have at least one domain', function(){
expect(domains).to.have.length.above(0);
});
it('should be in alphabetical order', function(){
expect(domains).to.be.sorted();
});
it('should not have duplicates', function(){
expect(domains).to.deep.equal(_.uniq(domains));
});
it('should be lowercase', function(){
expect(domains).to.be.all.lowercase;
});
it('should be a valid domain', function(){
expect(domains).to.be.all.isFQDN;
});
it('should not be a wildcard domain', function(){
expect(domains).to.be.all.notInWildcard;
});
});