/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/e2e/test-utils-tests/basic/basic.test.ts
12 строк
274 B
Leah
chore: update test template to use `nextTestSetup` (#62154)
16 фев 2024, 19:30
Не верифицирован
16 фев 2024, 19:30
ca1b618
Код
Авторство
О чём код?
import { nextTestSetup } from 'e2e-utils' describe('nextTestSetup', () => { const { next } = nextTestSetup({ files: __dirname, }) it('should work', async () => { const res = await next.fetch('/') expect(await res.text()).toContain('Hello World') }) })