/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/workerRestartBeforeSend.test.ts
15 строк
463 B
Peter Argany
fix: Restart a shut down worker before sending it a task. (#14015)
19 апр 2023, 13:09
Не верифицирован
19 апр 2023, 13:09
25d59f3
Код
Авторство
О чём код?
/** * 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'; it('all 3 test files should complete', () => { const result = runJest('worker-restart-before-send'); const {summary} = extractSummary(result.stderr); expect(summary).toMatchSnapshot(); });