Skip to content

Commit

Permalink
Fix tap args
Browse files Browse the repository at this point in the history
  • Loading branch information
timokoessler committed Oct 2, 2024
1 parent 4a925f1 commit a97cf6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"lint": "npm run lint-eslint && npm run lint-tsc",
"lint-eslint": "eslint '**/*.ts'",
"lint-tsc": "tsc --noEmit",
"test:esm": "npx tap --tsconfig ./tsconfig.esm-test.json '!(*node_modules)/**/*.test.mjs'"
"test:esm": "npx tap --tsconfig ./tsconfig.esm-test.json --allow-incomplete-coverage --coverage-report=lcov '!(*node_modules)/**/*.test.mjs'"
},
"dependencies": {
"import-in-the-middle": "^1.11.1"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-tap.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if (major === 22 && minor >= 5) {
args += " --node-arg=--experimental-sqlite --node-arg=--no-warnings";
}

execSync(`tap ${args}`, {
execSync(`tap ${args} '!(*node_modules)/**/*.test.ts'`, {
stdio: "inherit",
env: { ...process.env, AIKIDO_CI: "true" },
});

0 comments on commit a97cf6a

Please sign in to comment.