the-mail
Version:
Mail client for the-framework
23 lines (16 loc) • 308 B
JavaScript
/**
* Test for sendSMTP.
* Runs with mocha.
*/
const sendSMTP = require('../lib/sending/sendSMTP')
const {ok, equal} = require('assert')
describe('send-s-m-t-p', () => {
before(() => {
})
after(() => {
})
it('Do test', () => {
})
})
/* global describe, before, after, it */