diff options
| author | matt korwel <[email protected]> | 2025-07-06 20:16:42 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-07 03:16:42 +0000 |
| commit | 20825e41148a58998a6b1e5869149eac8d09cfbd (patch) | |
| tree | a228489987cd2e50925e5c9e97f5b9d0aa9c5e73 /integration-tests/test-helper.js | |
| parent | 39d4095a4c0f3478235aa0c80c94586b9e2662c2 (diff) | |
Release misc (#3418)
Diffstat (limited to 'integration-tests/test-helper.js')
| -rw-r--r-- | integration-tests/test-helper.js | 4 |
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', '', |
