ci: Toggle jest verbosity off on package level (#30312)

This commit is contained in:
Matsu 2026-05-15 22:01:30 +03:00 committed by GitHub
parent 4e1741834a
commit 793285069f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ const esmDependenciesRegex = `node_modules/(${esmDependenciesPattern})/.+\\.m?js
/** @type {import('jest').Config} */
const config = {
verbose: true,
verbose: false,
testEnvironment: 'node',
testRegex: '\\.(test|spec)\\.(js|ts)$',
testPathIgnorePatterns: ['/dist/', '/node_modules/'],