trailpack-mandrill
Version:
Trailpack for Mandrill
12 lines (10 loc) • 323 B
JavaScript
/* global describe, it */
const assert = require('assert')
describe('MandrillService', () => {
it('should exist', () => {
assert(global.app.api.services['MandrillService'])
assert(global.app.services['MandrillService'])
assert(global.app.services['MandrillService'].sendTemplateMessage)
})
})