Skip to content

Commit

Permalink
package for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjennings committed Jun 24, 2024
1 parent 07a656a commit fa782f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40074,7 +40074,7 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
let status = response.data.status;
let conclusion = response.data.conclusion;

console.log(chalk.green("TestDriver:"), '"Status:"', status);
console.log(chalk.green("TestDriver:"), '"Status:"', status, '"Conclusion:"', conclusion);

return { status, conclusion };
};
Expand Down Expand Up @@ -40105,7 +40105,7 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
await waitUntilComplete();

console.log(chalk.green("TestDriver:"), chalk.green('"Done!"'));
console.log(chalk.green("TestDriver:"), '"Writing my report..."'.green);
console.log(chalk.green("TestDriver:"), chalk.green('"Writing my report..."'));

const {
data: { shareLink, oiResult, exitcode },
Expand All @@ -40118,9 +40118,9 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
}
);

console.log(chalk.green("TestDriver:"), '"Interpreting results..."'.green);
console.log(chalk.green("TestDriver:"), chalk.green('"Interpreting results..."'));

console.log(chalk.green("TestDriver:"), `"Exit Code ${exitcode}"`.green);
console.log(chalk.green("TestDriver:"), chalk.green(`"Exit Code ${exitcode}"`, typeof exitcode));

const isPassed = parseInt(exitcode) === 0;

Expand Down

0 comments on commit fa782f6

Please sign in to comment.