/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/testPathPatternsSubprojects.test.ts
17 строк
502 B
Brandon Chinn
Fix testPathPatterns when config is in subdirectory (#14934)
29 май 2024, 09:41
Не верифицирован
29 май 2024, 09:41
68dca2a
Код
Авторство
О чём код?
/** * 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 {json} from '../runJest'; it('works when specifying --testPathPatterns when config is in subdir', () => { const { json: {numTotalTests}, } = json('test-path-patterns-subprojects', [ '--config=config/jest.config.js', '--testPathPatterns=testA', ]); expect(numTotalTests).toBe(1); });