Skip to content

Commit

Permalink
Trace bug from github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Oct 17, 2023
1 parent 48b229b commit d60e62d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/executable/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const feature = (name) => {
if (name.includes("error"))
try {
TestValidator.error("compile error")(() => {
cp.execSync("npx tsc", { stdio: "inherit" });
cp.execSync("npx tsc", { stdio: "ignore" });
generate("swagger");
generate("sdk");
});
Expand Down Expand Up @@ -54,7 +54,7 @@ const feature = (name) => {
);
if (config.includes("e2e:")) generate("e2e");
}
cp.execSync("npx tsc", { stdio: "ignore" });
cp.execSync("npx tsc", { stdio: "inherit" });

// RUN TEST AUTOMATION PROGRAM
if (fs.existsSync("src/test")) {
Expand Down

0 comments on commit d60e62d

Please sign in to comment.