summaryrefslogtreecommitdiff
path: root/integration-tests/test-helper.js
diff options
context:
space:
mode:
authormatt korwel <[email protected]>2025-07-06 20:16:42 -0700
committerGitHub <[email protected]>2025-07-07 03:16:42 +0000
commit20825e41148a58998a6b1e5869149eac8d09cfbd (patch)
treea228489987cd2e50925e5c9e97f5b9d0aa9c5e73 /integration-tests/test-helper.js
parent39d4095a4c0f3478235aa0c80c94586b9e2662c2 (diff)
Release misc (#3418)
Diffstat (limited to 'integration-tests/test-helper.js')
-rw-r--r--integration-tests/test-helper.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration-tests/test-helper.js b/integration-tests/test-helper.js
index 7acdc7aa..7ee3db87 100644
--- a/integration-tests/test-helper.js
+++ b/integration-tests/test-helper.js
@@ -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',
'',