File size: 1,264 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 |
import { nextTestSetup } from 'e2e-utils'
import { join } from 'path'
describe('app-root-params - multiple roots', () => {
const { next, isNextDeploy, isTurbopack } = nextTestSetup({
files: join(__dirname, 'fixtures', 'multiple-roots'),
})
it('should have root params on dashboard pages', async () => {
const $ = await next.render$('/1/data')
expect($('body').text()).toContain('Dashboard Root')
expect($('p').text()).toBe('hello world {"id":"1"}')
})
it('should not have root params on marketing pages', async () => {
const $ = await next.render$('/landing')
expect($('body').text()).toContain('Marketing Root')
expect($('p').text()).toBe('hello world {}')
})
// `next-types-plugin` currently only runs in Webpack.
// We skip deployment mode since we don't care about the deploy, we just want to
// check the file generated at build time.
if (!isNextDeploy && !isTurbopack) {
it('should correctly generate types', async () => {
expect(await next.hasFile('.next/types/server.d.ts')).toBe(true)
const fileContents = await next.readFile('.next/types/server.d.ts')
expect(fileContents).toContain(
`export function unstable_rootParams(): Promise<{ id?: string }>`
)
})
}
})
|