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.

32 lines
488 B

3 years ago
'use strict'
const { test } = require('tap')
const boot = require('..')
test('await self', async (t) => {
const app = {}
boot(app)
t.equal(await app, app)
})
test('await self three times', async (t) => {
const app = {}
boot(app)
t.equal(await app, app)
t.equal(await app, app)
t.equal(await app, app)
})
test('await self within plugin', async (t) => {
const app = {}
boot(app)
app.use(async (f) => {
t.equal(await f, f)
})
t.equal(await app, app)
})