Skip to content

Commit a72c5f8

Browse files
committed
testdbg
1 parent dd6053b commit a72c5f8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/cli.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ module.exports = [
5757
{
5858
args: ["run", "test/fixtures/ts-error1/fail.ts"],
5959
expect (code, stdout, stderr) {
60+
console.log(stderr);
6061
return code === 1 && stderr.toString().indexOf('fail.ts:2:1') !== -1;
6162
}
6263
},

test/cli.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { join } = require("path");
33
const cliTests = require("./cli.js");
44
const file = global.coverage ? "/../src/cli.js" : "/../dist/ncc/cli.js";
55

6-
jest.setTimeout(20000);
6+
jest.setTimeout(25000);
77

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

0 commit comments

Comments
 (0)