next.js/test/integration/babel-next-image/babel-next-image.test.ts
babel-next-image.test.ts23 lines534 B
/* eslint-env jest */

import { fetchViaHTTP, findPort, killApp, launchApp } from 'next-test-utils'
;(process.env.IS_TURBOPACK_TEST ? describe.skip : describe)(
  'babel-next-image',
  () => {
    let appPort
    let app

    beforeAll(async () => {
      appPort = await findPort()
      app = await launchApp(__dirname, appPort)
    })

    afterAll(() => killApp(app))

    it('should work with babel and next/image', async () => {
      const res = await fetchViaHTTP(appPort, '/')
      expect(res.status).toBe(200)
    })
  }
)
Quest for Codev2.0.0
/
SIGN IN