File size: 1,137 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 27 28 29 30 31 32 33 34 35 36 37 38 |
import { createNext, FileRef } from 'e2e-utils'
import { NextInstance } from 'e2e-utils'
import { assertHasRedbox, getRedboxSource } from 'next-test-utils'
import webdriver from 'next-webdriver'
import { join } from 'path'
describe('font-loader-in-document-error', () => {
let next: NextInstance
beforeAll(async () => {
next = await createNext({
files: {
pages: new FileRef(join(__dirname, 'font-loader-in-document/pages')),
},
})
})
afterAll(() => next.destroy())
test('next/font inside _document', async () => {
const browser = await webdriver(next.url, '/')
await assertHasRedbox(browser)
if (process.env.IS_TURBOPACK_TEST) {
// TODO: Turbopack doesn't include pages/
expect(await getRedboxSource(browser)).toMatchInlineSnapshot(`
"./_document.js
next/font: error:
Cannot be used within _document.js"
`)
} else {
expect(await getRedboxSource(browser)).toMatchInlineSnapshot(`
"pages/_document.js
\`next/font\` error:
Cannot be used within pages/_document.js."
`)
}
})
})
|