You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
495 B
31 lines
495 B
3 years ago
|
'use strict'
|
||
|
|
||
|
const t = require('tap')
|
||
|
const boot = require('..')
|
||
|
const app = {}
|
||
|
|
||
|
boot(app)
|
||
|
|
||
|
t.plan(5)
|
||
|
|
||
|
const e = new Error('kaboom')
|
||
|
|
||
|
app.use(function (f, opts) {
|
||
|
return Promise.reject(e)
|
||
|
}).after(function (err, cb) {
|
||
|
t.equal(err, e)
|
||
|
cb(err)
|
||
|
}).after(function () {
|
||
|
t.pass('this is just called')
|
||
|
}).after(function (err, cb) {
|
||
|
t.equal(err, e)
|
||
|
cb(err)
|
||
|
})
|
||
|
|
||
|
app.ready().then(() => {
|
||
|
t.fail('this should not be called')
|
||
|
}).catch(err => {
|
||
|
t.ok(err)
|
||
|
t.equal(err.message, 'kaboom')
|
||
|
})
|