11 lines
303 B
JavaScript
11 lines
303 B
JavaScript
|
'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();
|
||
|
};
|