Files
2026-01-22 15:49:12 +01:00

13 lines
211 B
JavaScript

import { test } from 'tap'
import boot from '../boot.js'
test('support import', async (t) => {
const app = boot()
app.use(import('./fixtures/esm.mjs'))
await app.ready()
t.equal(app.loaded, true)
})