mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 08:47:44 +00:00
Release misc (#3418)
This commit is contained in:
@@ -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',
|
||||
'',
|
||||
|
||||
Reference in New Issue
Block a user