File size: 658 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import { nextTestSetup } from 'e2e-utils'
import { waitFor } from 'next-test-utils'
import { createSandbox, waitForHydration } from 'development-sandbox'
describe('basic app-dir tests', () => {
const { next } = nextTestSetup({
files: __dirname,
})
it('should reload app pages without error', async () => {
await using sandbox = await createSandbox(next, undefined, '/')
const { session, browser } = sandbox
await session.assertNoRedbox()
browser.refresh()
await waitFor(750)
await waitForHydration(browser)
for (let i = 0; i < 15; i++) {
await session.assertNoRedbox()
await waitFor(1000)
}
})
})
|