|
|
import { createNext, FileRef } from 'e2e-utils' |
|
|
import { NextInstance } from 'e2e-utils' |
|
|
import { join } from 'path' |
|
|
import webdriver from 'next-webdriver' |
|
|
import { |
|
|
assertHasRedbox, |
|
|
assertNoRedbox, |
|
|
getRedboxSource, |
|
|
} from 'next-test-utils' |
|
|
|
|
|
|
|
|
describe.skip('next/font build-errors', () => { |
|
|
let next: NextInstance |
|
|
|
|
|
beforeAll(async () => { |
|
|
next = await createNext({ |
|
|
files: new FileRef(join(__dirname, 'build-errors')), |
|
|
}) |
|
|
}) |
|
|
afterAll(() => next.destroy()) |
|
|
|
|
|
it('should show a next/font error when input is wrong', async () => { |
|
|
const browser = await webdriver(next.url, '/') |
|
|
const content = await next.readFile('app/page.js') |
|
|
|
|
|
await next.patchFile( |
|
|
'app/page.js', |
|
|
` |
|
|
import localFont from 'next/font/local' |
|
|
|
|
|
const font = localFont() |
|
|
|
|
|
export default function Page() { |
|
|
return <p className={font.className}>Hello world!</p> |
|
|
} |
|
|
` |
|
|
) |
|
|
|
|
|
await assertHasRedbox(browser) |
|
|
expect(await getRedboxSource(browser)).toMatchInlineSnapshot(` |
|
|
"app/page.js |
|
|
\`next/font\` error: |
|
|
Missing required \`src\` property" |
|
|
`) |
|
|
|
|
|
await next.patchFile('app/page.js', content) |
|
|
await assertNoRedbox(browser) |
|
|
}) |
|
|
|
|
|
it("should show a module not found error if local font file can' be resolved", async () => { |
|
|
const browser = await webdriver(next.url, '/') |
|
|
const content = await next.readFile('app/page.js') |
|
|
|
|
|
await next.patchFile( |
|
|
'app/page.js', |
|
|
` |
|
|
import localFont from 'next/font/local' |
|
|
|
|
|
const font = localFont({ src: './boom.woff2'}) |
|
|
|
|
|
export default function Page() { |
|
|
return <p className={font.className}>Hello world!</p> |
|
|
} |
|
|
` |
|
|
) |
|
|
|
|
|
await assertHasRedbox(browser) |
|
|
const sourceLines = (await getRedboxSource(browser)).split('\n') |
|
|
|
|
|
|
|
|
expect(sourceLines[0]).toEqual('app/page.js') |
|
|
|
|
|
expect(sourceLines[1]).toEqual( |
|
|
"Module not found: Can't resolve './boom.woff2'" |
|
|
) |
|
|
|
|
|
await next.patchFile('app/page.js', content) |
|
|
await assertNoRedbox(browser) |
|
|
}) |
|
|
}) |
|
|
|