Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { nextTestSetup } from 'e2e-utils'
describe('standalone mode - no app routes', () => {
const { next } = nextTestSetup({
files: __dirname,
})
it('should handle pages rendering correctly', async () => {
const browser = await next.browser('/hello')
expect(await browser.elementByCss('#index').text()).toBe('index-page')
})
})