smartmail/test/test.ts

25 lines
811 B
TypeScript
Raw Normal View History

2018-09-29 21:57:25 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartmail from '../ts/index';
2020-06-18 15:34:05 +00:00
let emailAddressValidatorInstance: smartmail.EmailAddressValidator;
tap.test('should create an instance of EmailAddressValidator', async () => {
emailAddressValidatorInstance = new smartmail.EmailAddressValidator();
expect(emailAddressValidatorInstance).to.be.instanceOf(smartmail.EmailAddressValidator);
});
tap.test('should validate an email', async () => {
const result = await emailAddressValidatorInstance.validate('sandbox@bleu.de');
});
2018-09-29 21:57:25 +00:00
tap.test('first test', async () => {
2019-10-26 21:45:35 +00:00
const testSmartmail = new smartmail.Smartmail({
body: 'hi there',
from: 'noreply@mail.lossless.com',
subject: 'hi from here'
});
2018-09-29 21:57:25 +00:00
expect(testSmartmail).to.be.instanceof(smartmail.Smartmail);
});
tap.start();