-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around legacy tap-based tests choking on our tsconfig.json
No idea why it's even resolving the config when there are no TypeScript tests to run.
- Loading branch information
1 parent
c0ddd02
commit 47eac1f
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
disable-coverage: true | ||
allow-empty-coverage: true | ||
files: | ||
- "test-tap/*.js" | ||
- "test-tap/reporters/*.js" | ||
- "test-tap/integration/*.js" | ||
include: | ||
- test-tap/*.js | ||
- test-tap/reporters/*.js | ||
- test-tap/integration/*.js | ||
timeout: 300 | ||
plugin: | ||
- "!@tapjs/typescript" | ||
tsconfig: test-tap/tsconfig.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Empty config file so that TAP doesn't choke on ours. | ||
{} |