/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/isolateModulesAsync.test.ts
20 строк
577 B
cin
fix: isolate esm async import bug (#14397)
21 авг 2023, 15:08
Не верифицирован
21 авг 2023, 15:08
58e8491
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {extractSummary} from '../Utils'; import runJest from '../runJest'; test('runs test with isolate modules async import', () => { const {exitCode, stderr} = runJest('isolate-modules-async', [], { nodeOptions: '--experimental-vm-modules --no-warnings', }); const {summary} = extractSummary(stderr); expect(summary).toMatchSnapshot(); expect(exitCode).toBe(0); });