/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/requireMissingExt.test.ts
27 строк
661 B
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 * as path from 'path'; import { extractSummary, replaceJestBuildLineNumbers, runYarnInstall, } from '../Utils'; import runJest from '../runJest'; const dir = path.resolve(__dirname, '../require-missing-ext'); beforeEach(() => { runYarnInstall(dir); }); test('shows a proper error from deep requires', () => { const {stderr} = runJest(dir); const {rest} = extractSummary(stderr); expect(replaceJestBuildLineNumbers(rest)).toMatchSnapshot(); });