/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/customMatcherStackTrace.test.ts
32 строки
785 B
Simen Bekkhus
chore: prefer `.includes` over `indexOf` (#14524)
14 сен 2023, 16:13
Не верифицирован
14 сен 2023, 16:13
8cc8dae
Код
Авторство
О чём код?
/** * 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'; test('works with custom matchers', () => { const {stderr} = runJest('custom-matcher-stack-trace', ['sync.test.js']); let {rest} = extractSummary(stderr); rest = rest .split('\n') .filter(line => !line.includes('at Error (native)')) .join('\n'); expect(rest).toMatchSnapshot(); }); test('custom async matchers', () => { const {stderr} = runJest('custom-matcher-stack-trace', [ 'asynchronous.test.js', ]); const {rest} = extractSummary(stderr); expect(rest).toMatchSnapshot(); });