next.js/test/e2e/app-dir/esm-client-module-without-exports/esm-client-module-without-exports.test.ts
esm-client-module-without-exports.test.ts13 lines301 B
import { nextTestSetup } from 'e2e-utils'

describe('esm-client-module-without-exports', () => {
  const { next } = nextTestSetup({
    files: __dirname,
  })

  it('should render without errors', async () => {
    const html = await next.render('/')
    expect(html).toContain('hello world')
  })
})
Quest for Codev2.0.0
/
SIGN IN