mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
17 lines
435 B
JavaScript
17 lines
435 B
JavaScript
var mail = require('../../common/mail');
|
|
|
|
describe('test/common/mail.test.js', function () {
|
|
describe('sendActiveMail', function () {
|
|
it('should ok', function () {
|
|
mail.sendActiveMail('shyvo1987@gmail.com', 'token', 'jacksontian');
|
|
});
|
|
});
|
|
|
|
describe('sendResetPassMail', function () {
|
|
it('should ok', function () {
|
|
mail.sendResetPassMail('shyvo1987@gmail.com', 'token', 'jacksontian');
|
|
});
|
|
});
|
|
|
|
});
|