mailtrain/test/frontmail-test.js

11 lines
303 B
JavaScript
Raw Normal View History

2016-04-04 12:36:30 +00:00
'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();
test.ok(transport._getVersionString());
test.done();
};