9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import { load } from './load.js'
|
|
|
|
describe('Loader', () => {
|
|
it('should load using TS moduleResolution: bundler', async () => {
|
|
const file = await load('./next-navigation-test.js')
|
|
expect(typeof file.redirect).toStrictEqual('function')
|
|
})
|
|
})
|