Skip to content

Commit

Permalink
test: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Apr 21, 2023
1 parent 7a754be commit 8f63194
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/build/config-format/typescript-esnext/typescript.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ describe("webpack cli", () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["-c", "./webpack.config.ts"], {
nodeOptions: ["--loader=ts-node/esm"],
});
console.log("Stderr: ", stderr);
console.log("Stdout: ", stdout);
console.log("Exit code: ", exitCode);
expect(stderr).not.toBeFalsy(); // Deprecation warning logs on stderr
expect(stdout).toBeTruthy();
expect(exitCode).toBe(0);
Expand Down

0 comments on commit 8f63194

Please sign in to comment.