Add a test for punycode encoded domains

This commit is contained in:
nauadratti 2017-03-30 19:29:50 +00:00 committed by GitHub
parent 3673e21a77
commit f56d557036

View File

@ -87,6 +87,10 @@ describe('Util unit tests', function() {
var data = 'test@example.com';
expect(openpgp.util.isEmailAddress(data)).to.be.true;
});
it('should return true for valid email address', function() {
var data = 'test@xn--wgv.xn--q9jyb4c';
expect(openpgp.util.isEmailAddress(data)).to.be.true;
});
it('should return false for invalid email address', function() {
var data = 'Test User <test@example.com>';
expect(openpgp.util.isEmailAddress(data)).to.be.false;