/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/jest-util/src/preRunMessage.ts
23 строки
596 B
Jonathan Zawada
fix(expect): revert `node:` protocol imports to restore webpack/browser compatibility (#16167)
12 май 2026, 11:19
Не верифицирован
12 май 2026, 11:19
b9bb75f
Код
Авторство
О чём код?
/** * 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 type {WriteStream} from 'tty'; import chalk from 'chalk'; import clearLine from './clearLine'; import isInteractive from './isInteractive'; export function print(stream: WriteStream): void { if (isInteractive) { stream.write(chalk.bold.dim('Determining test suites to run...')); } } export function remove(stream: WriteStream): void { if (isInteractive) { clearLine(stream); } }