Skip to content

Commit

Permalink
fix(cli-plugin-vitest): fix extra space in vitest command
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Sep 21, 2024
1 parent 972207b commit 006212b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli-plugin-vitest/src/CliPluginVitestModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class CliPluginVitestModule {
const runtime = this.runtimes.get();

this.packageJson.addScripts({
test: `${runtime.run("test:lint")} && ${runtime.run("test:coverage")} `,
test: `${runtime.run("test:lint")} && ${runtime.run("test:coverage")}`,
"test:unit": "cross-env NODE_ENV=test vitest run",
"test:watch": "cross-env NODE_ENV=test vitest",
"test:coverage": `cross-env NODE_ENV=test vitest run --coverage`
Expand Down

0 comments on commit 006212b

Please sign in to comment.