UNPKG

the-mail

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