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