Skip to content

Commit b917842

Browse files
committed
test: add test case for custom tsconfig
1 parent f1baf97 commit b917842

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"include": ["src/main.ts"]
3+
}

test/parse_args.test.ts

+22
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,26 @@ export src/a.ts:2:0 'a2'
7373
);
7474
assert.equal(code, 1);
7575
});
76+
77+
it('should work with custom tsconfig.json', async () => {
78+
const { stdout, code } = await exec(
79+
`node ${bin} --project tsconfig.main.json 'src/main\\.ts$'`,
80+
{
81+
cwd: projectRoot,
82+
},
83+
)
84+
.then((res) => ({ ...res, code: 0 }))
85+
.catch((e) => e as { stdout: string; code: number });
86+
87+
const output = stripAnsi(stdout.toString());
88+
89+
assert.equal(
90+
output,
91+
`tsconfig tsconfig.main.json
92+
Project has 1 file. Found 1 entrypoint file
93+
✔ all good!
94+
`,
95+
);
96+
assert.equal(code, 0);
97+
});
7698
});

0 commit comments

Comments
 (0)