Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { nextTestSetup } from 'e2e-utils'
import { check } from 'next-test-utils'
describe('ENOENT during require', () => {
const { next } = nextTestSetup({
files: __dirname,
})
it('should show ENOENT error correctly', async () => {
await next.fetch('/')
await check(() => {
expect(next.cliOutput).toContain(
"ENOENT: no such file or directory, open 'does-not-exist.txt'"
)
return 'yes'
}, 'yes')
})
})