pi-test-data
Version:
Manage test data for automation
25 lines (18 loc) • 321 B
JavaScript
const t = require('tap')
const boot = require('..')
t.plan(2)
const server = {}
const app = boot(server, {
autostart: false
})
app.override = function () {
throw Error('catch it')
}
app
.use(function () {})
.start()
app.ready(function (err) {
t.type(err, Error)
t.match(err, /catch it/)
})