/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/beforeEachQueue.ts
18 строк
588 B
Simen Bekkhus
chore: use `String.replaceAll` if possible (#14823)
31 дек 2023, 20:38
Не верифицирован
31 дек 2023, 20:38
c13bca3
Код
Авторство
О чём код?
/** * 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 {skipSuiteOnJestCircus} from '@jest/test-utils'; import runJest from '../runJest'; skipSuiteOnJestCircus(); // Circus does not support funky async definitions describe('Correct beforeEach order', () => { it('ensures the correct order for beforeEach', () => { const result = runJest('before-each-queue'); expect(result.stdout.replaceAll('\\', '/')).toMatchSnapshot(); }); });