/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/__tests__/wrongEnv.test.ts
41 строка
1 KB
Tom Mrazauskas
chore!: drop support for Node.js 21 (#15118)
12 июл 2024, 11:38
Не верифицирован
12 июл 2024, 11:38
697ce45
Код
Авторство
О чём код?
/** * 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 {onNodeVersions} from '@jest/test-utils'; import {extractSummary} from '../Utils'; import runJest from '../runJest'; function assertFailuresAndSnapshot(args: Array<string>) { const result = runJest('wrong-env', args); expect(result.exitCode).toBe(1); expect(extractSummary(result.stderr).rest).toMatchSnapshot(); } describe('Wrong globals for environment', () => { it('print useful error for window', () => { assertFailuresAndSnapshot(['node', '-t=window']); }); it('print useful error for document', () => { assertFailuresAndSnapshot(['node', '-t=document']); }); // Node.js 18 is the last LTS version, which is missing the global 'navigator' onNodeVersions('<=18', () => { it('print useful error for navigator', () => { assertFailuresAndSnapshot(['node', '-t=navigator']); }); }); it('print useful error for unref', () => { assertFailuresAndSnapshot(['jsdom', '-t=unref']); }); it('print useful error when it explodes during evaluation', () => { assertFailuresAndSnapshot(['beforeTest']); }); });