Files
simple-mail-cleaner/backend/node_modules/avvio/test/after-self-promise.test.js
2026-01-22 15:49:12 +01:00

21 lines
317 B
JavaScript

'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')
})