Release misc (#3418)

This commit is contained in:
matt korwel
2025-07-06 20:16:42 -07:00
committed by GitHub
parent 1696d9f15e
commit 0b49ee4df4
6 changed files with 52 additions and 25 deletions
+2 -2
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',
'',