Files
payloadcms/test/loader/int.spec.ts
2024-04-06 13:58:05 -04:00

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