Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { nextTestSetup } from 'e2e-utils'
describe('app-dir revalidate', () => {
const { next, skipped } = nextTestSetup({
files: __dirname,
skipDeployment: true,
})
if (skipped) {
return
}
it('should be able to revalidate the cache via pages/api', async () => {
const $ = await next.render$('/')
const id = $('h1').text()
const res = await next.fetch('/api/revalidate')
expect(res.status).toBe(200)
const $2 = await next.render$('/')
const id2 = $2('h1').text()
expect(id).not.toBe(id2)
})
})