fix(core): update
This commit is contained in:
30
test/test.ts
Normal file
30
test/test.ts
Normal file
@ -0,0 +1,30 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as smartsmtp from '../ts/index';
|
||||
|
||||
import { Qenv } from '@pushrocks/qenv';
|
||||
import * as smartmail from '@pushrocks/smartmail';
|
||||
|
||||
const testQenv = new Qenv('./', './.nogit');
|
||||
|
||||
let testSmartsmtp: smartsmtp.Smartsmtp;
|
||||
|
||||
tap.test('should create a valid instance of Smartsmtp', async () => {
|
||||
testSmartsmtp = new smartsmtp.Smartsmtp({
|
||||
smtpServer: testQenv.getEnvVarOnDemand('SMTP_SERVER'),
|
||||
smtpUser: testQenv.getEnvVarOnDemand('SMTP_USER'),
|
||||
smtpPassword: testQenv.getEnvVarOnDemand('SMTP_PASSWORD'),
|
||||
});
|
||||
expect(testSmartsmtp).to.be.instanceOf(smartsmtp.Smartsmtp);
|
||||
});
|
||||
|
||||
|
||||
tap.test('should send a message', async () => {
|
||||
const result = await testSmartsmtp.sendSmartMail(new smartmail.Smartmail({
|
||||
body: '',
|
||||
from: 'smartsmtp@mail.lossless.one',
|
||||
subject: 'this is a test message',
|
||||
}), 'sandbox@mail.git.zone');
|
||||
console.log(result);
|
||||
});
|
||||
|
||||
tap.start();
|
Reference in New Issue
Block a user