Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { nextTestSetup } from 'e2e-utils'
describe('sharp support with hasNextSupport', () => {
const { next } = nextTestSetup({
files: __dirname,
dependencies: {
sharp: 'latest',
},
packageJson: {
pnpm: {
onlyBuiltDependencies: ['sqlite3'],
},
},
env: {
NOW_BUILDER: '1',
},
})
// we're mainly checking if build/start were successful so
// we have a basic assertion here
it('should work using cheerio', async () => {
const $ = await next.render$('/')
expect($('p').text()).toBe('hello world')
})
})