Skip to content

Commit

Permalink
fix: don't check if vite is installed (#4659)
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Dec 5, 2023
1 parent a990845 commit 775e201
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions packages/vitest/src/node/cli-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ export async function startVitest(
// this shouldn't affect _application root_ that can be changed inside config
const root = resolve(options.root || process.cwd())

if (!await ensurePackageInstalled('vite', root)) {
process.exitCode = 1
return
}

if (typeof options.coverage === 'boolean')
options.coverage = { enabled: options.coverage }

Expand Down

0 comments on commit 775e201

Please sign in to comment.