email-domain-check
Version:
Checks existence of E-Mail DNS MX records.
23 lines (16 loc) • 460 B
JavaScript
const assert = require('assert');
const edc = require('../');
describe('general test', function() {
it('should false', function() {
return edc("mehmet.kozan@gmailililil.com")
.then(function(result){
assert.equal(result,false);
});
});
it('should true', function() {
return edc("mehmet.kozan@gmail.com")
.then(function(result){
assert.equal(result,true);
});
});
});