We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5edef6a commit 597670eCopy full SHA for 597670e
scripts/run_tests_in_ci.js
@@ -61,7 +61,6 @@ const argv = yargs.options({
61
let scriptName = argv.s;
62
const dir = path.resolve(myPath);
63
const { name } = require(`${dir}/package.json`);
64
- const safeName = name.replace(/@/g, 'at_').replace(/\//g, '_');
65
const testOutputFile = path.join(
66
LOGDIR,
67
`${getPathSafeName(name)}-ci-log.txt`
@@ -88,7 +87,7 @@ const argv = yargs.options({
88
87
});
89
90
const resultStr = exitCode === 0 ? 'Success' : 'Failure';
91
- console.log(`${resultStr}: ` + name);
+ console.log(`${resultStr}: ${name}`);
92
await printFile(testOutputFile);
93
94
fs.writeFileSync(
0 commit comments