/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/complexItemsInErrors.ts
89 строк
2 KB
Simen Bekkhus
chore: enable disabled `BigInt` test (#15576)
18 апр 2025, 11:07
Не верифицирован
18 апр 2025, 11:07
6b01b5d
Код
Авторство
О чём код?
/** * 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 {tmpdir} from 'os'; import * as path from 'path'; import { cleanup, createEmptyPackage, extractSortedSummary, writeFiles, } from '../Utils'; import {runContinuous} from '../runJest'; const tempDir = path.resolve(tmpdir(), 'complex-errors'); // this is a tiny bit flaky jest.retryTimes(3); beforeEach(() => { createEmptyPackage(tempDir); }); afterEach(() => { cleanup(tempDir); }); test('handles functions that close over outside variables', async () => { const testFileContent = ` const someString = 'hello from the other side'; test('dummy', () => { const error = new Error('boom'); error.someProp = () => someString; throw error; }); `; writeFiles(tempDir, { '__tests__/test-1.js': testFileContent, '__tests__/test-2.js': testFileContent, }); const {end, waitUntil} = runContinuous( tempDir, ['--no-watchman', '--watch-all'], // timeout in case the `waitUntil` below doesn't fire {stripAnsi: true, timeout: 10_000}, ); await waitUntil(({stderr}) => stderr.includes('Ran all test suites.')); const {stderr} = await end(); const {rest} = extractSortedSummary(stderr); expect(rest).toMatchSnapshot(); }); test('handles errors with BigInt', async () => { const testFileContent = ` test('dummy', () => { expect(1n).toEqual(2n); }); `; writeFiles(tempDir, { '__tests__/test-1.js': testFileContent, '__tests__/test-2.js': testFileContent, }); const {end, waitUntil} = runContinuous( tempDir, ['--no-watchman', '--watch-all'], // timeout in case the `waitUntil` below doesn't fire {stripAnsi: true, timeout: 5000}, ); await waitUntil(({stderr}) => stderr.includes('Ran all test suites.')); const {stderr} = await end(); const {rest} = extractSortedSummary(stderr); expect(rest).toMatchSnapshot(); });