Release misc (#3418)

This commit is contained in:
matt korwel
2025-07-06 20:16:42 -07:00
committed by GitHub
parent 39d4095a4c
commit 20825e4114
6 changed files with 52 additions and 25 deletions

View File

@@ -72,7 +72,7 @@ export class TestRig {
const output = execSync(command, execOptions);
if (env.KEEP_OUTPUT === 'true') {
if (env.KEEP_OUTPUT === 'true' || env.VERBOSE === 'true') {
const testId = `${env.TEST_FILE_NAME.replace(
'.test.js',
'',
@@ -87,7 +87,7 @@ export class TestRig {
readFile(fileName) {
const content = readFileSync(join(this.testDir, fileName), 'utf-8');
if (env.KEEP_OUTPUT === 'true') {
if (env.KEEP_OUTPUT === 'true' || env.VERBOSE === 'true') {
const testId = `${env.TEST_FILE_NAME.replace(
'.test.js',
'',