Skip to content

Commit

Permalink
testdbg
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Jul 28, 2022
1 parent dd6053b commit a72c5f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions test/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ module.exports = [
{
args: ["run", "test/fixtures/ts-error1/fail.ts"],
expect (code, stdout, stderr) {
console.log(stderr);
return code === 1 && stderr.toString().indexOf('fail.ts:2:1') !== -1;
}
},
Expand Down
2 changes: 1 addition & 1 deletion test/cli.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { join } = require("path");
const cliTests = require("./cli.js");
const file = global.coverage ? "/../src/cli.js" : "/../dist/ncc/cli.js";

jest.setTimeout(20000);
jest.setTimeout(25000);

describe('cli', () => {
it.each(cliTests)('should execute ncc $args', async ({ args, env, expect: e, timeout }) => {
Expand Down

0 comments on commit a72c5f8

Please sign in to comment.