/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/isolate-modules-async/__tests__/main.js
22 строки
711 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 {jest} from '@jest/globals'; test('should have a fresh module state in each isolateModulesAsync context', async () => { await jest.isolateModulesAsync(async () => { const {getState, incState} = await import('../main.js'); expect(getState()).toBe(0); incState(); expect(getState()).toBe(1); }); await jest.isolateModulesAsync(async () => { const {getState, incState} = await import('../main.js'); expect(getState()).toBe(0); incState(); expect(getState()).toBe(1); }); });