Projektstart
This commit is contained in:
20
backend/node_modules/avvio/test/after-self-promise.test.js
generated
vendored
Normal file
20
backend/node_modules/avvio/test/after-self-promise.test.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
'use strict'
|
||||
|
||||
const { test } = require('tap')
|
||||
const boot = require('..')
|
||||
|
||||
test('after does not await itself', async (t) => {
|
||||
t.plan(3)
|
||||
|
||||
const app = {}
|
||||
boot(app)
|
||||
|
||||
app.use(async (app) => {
|
||||
t.pass('plugin init')
|
||||
})
|
||||
app.after(() => app)
|
||||
t.pass('reachable')
|
||||
|
||||
await app.ready()
|
||||
t.pass('reachable')
|
||||
})
|
||||
Reference in New Issue
Block a user