e2e tests (draft)
This commit is contained in:
parent
408db13fd4
commit
6c35046ab2
26 changed files with 1659 additions and 29 deletions
12
test/nodeunit/frontmail-test.js
Normal file
12
test/nodeunit/frontmail-test.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
'use strict';
|
||||
|
||||
let nodemailer = require('nodemailer');
|
||||
|
||||
// This is a dummy test to ensure that nodeunit would not fail on 0 assertions
|
||||
module.exports['Load nodemailer'] = function (test) {
|
||||
let transport = nodemailer.createTransport({
|
||||
streamTransport: true
|
||||
});
|
||||
test.ok(transport);
|
||||
test.done();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue