/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/moduleNameMapper.test.ts
55 строк
2 KB
Simen Bekkhus
chore: replace line numbers in snapshots (#16079)
02 май 2026, 00:22
Не верифицирован
02 май 2026, 00:22
fe708d8
Код
Авторство
О чём код?
/** * 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, replaceJestBuildLineNumbers} from '../Utils'; import runJest, {json as runWithJson} from '../runJest'; test('moduleNameMapper wrong configuration', () => { const {stderr, exitCode} = runJest('module-name-mapper-wrong-config'); const {rest} = extractSummary(stderr); expect(exitCode).toBe(1); expect(replaceJestBuildLineNumbers(rest)).toMatchSnapshot(); }); test('moduleNameMapper wrong array configuration', () => { const {stderr, exitCode} = runJest('module-name-mapper-wrong-array-config'); const {rest} = extractSummary(stderr); expect(exitCode).toBe(1); expect(replaceJestBuildLineNumbers(rest)).toMatchSnapshot(); }); test('moduleNameMapper correct configuration', () => { const {stderr, exitCode} = runJest('module-name-mapper-correct-config', [], { stripAnsi: true, }); const {rest} = extractSummary(stderr); expect(exitCode).toBe(0); expect(rest).toMatchSnapshot(); }); test('moduleNameMapper correct configuration mocking module of absolute path', () => { const {stderr, exitCode} = runJest( 'module-name-mapper-correct-mock-absolute-path', [], { stripAnsi: true, }, ); const {rest} = extractSummary(stderr); expect(exitCode).toBe(0); expect(rest).toMatchSnapshot(); }); test('moduleNameMapper with mocking', () => { const {json} = runWithJson('module-name-mapper-mock'); expect(json.numTotalTests).toBe(2); expect(json.success).toBe(true); });