Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { nextTestSetup } from 'e2e-utils'
describe.each(['edge', 'nodejs'])(
'dynamic-css-client-navigation react lazy %s',
(runtime) => {
const { next } = nextTestSetup({
files: __dirname,
})
it(`should not remove style when navigating from static imported component to react lazy at runtime ${runtime}`, async () => {
const browser = await next.browser(`/${runtime}`)
expect(
await browser
.elementByCss(`a[href="/${runtime}/react-lazy"]`)
.click()
.waitForElementByCss('#red-button')
.text()
).toBe('Red Button')
const buttonBgColor = await browser.eval(
`window.getComputedStyle(document.querySelector('button')).backgroundColor`
)
expect(buttonBgColor).toBe('rgb(255, 0, 0)')
})
}
)