next.js/test/production/sharp-basic/sharp-basic.test.ts
sharp-basic.test.ts26 lines582 B
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')
  })
})
Quest for Codev2.0.0
/
SIGN IN