Skip to content

Commit

Permalink
fix: test plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaar authored Sep 24, 2023
1 parent 11107fe commit a10f642
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/plugins/src/test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function install({ directory }: PluginArgs) {
directory,
data: {
scripts: {
test: "node --test | tap --no-coverage",
test: "node --test | tap",
},
},
});
Expand All @@ -38,7 +38,7 @@ async function install({ directory }: PluginArgs) {
directory,
data: {
scripts: {
test: "NODE_OPTIONS='--loader=ts-node/esm --no-warnings' node --test test/*.test.ts | NODE_OPTIONS='--loader=ts-node/esm --no-warnings' tap --no-coverage",
test: "NODE_OPTIONS='--loader=ts-node/esm --no-warnings' node --test test/*.test.ts | tap",
},
},
});
Expand Down

0 comments on commit a10f642

Please sign in to comment.