Files
vercel__next.js/test/production/sharp-basic/sharp-basic.test.ts
Sebastian "Sebbie" Silbermann c4d33a5cbb [test] Drop the dead sqlite3 build approval from the sharp-basic suite (#97540)
This suite doesn't use `sqlite3`.
2026-08-20 10:37:54 +02:00

21 lines
489 B
TypeScript

import { nextTestSetup } from 'e2e-utils'
describe('sharp support with hasNextSupport', () => {
const { next } = nextTestSetup({
files: __dirname,
dependencies: {
sharp: 'latest',
},
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')
})
})