Skip to content

Commit 6ce3ed7

Browse files
authoredNov 21, 2022
fix(cli): don't override config by setting cli options to undefined (#2330)
This has been introduced by #2180. The change there will *always* set argv.dir, no matter if it's been there before or not. When it's not there, it will set it to undefined, which then will lead to vitest using the root as fallback instead of the config set in the config file, since CLI options override config options. In our case, this config was essentially ignored since 0.24.4. ```js import { defineConfig } from "vite" export default defineConfig({ test: { dir: "spec/javascript" } }) ``` with the only workaround of providing `dir` via CLI option.
1 parent 4f5efdb commit 6ce3ed7

File tree

1 file changed

+9
-3
lines changed
  • packages/vitest/src/node

1 file changed

+9
-3
lines changed
 

‎packages/vitest/src/node/cli.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,15 @@ async function typecheck(cliFilters: string[] = [], options: CliOptions = {}) {
103103
}
104104

105105
function normalizeOptions(argv: CliOptions): CliOptions {
106-
argv.root = argv.root && normalize(argv.root)
107-
argv.config = argv.config && normalize(argv.config)
108-
argv.dir = argv.dir && normalize(argv.dir)
106+
if (argv.root)
107+
argv.root = normalize(argv.root)
108+
109+
if (argv.config)
110+
argv.config = normalize(argv.config)
111+
112+
if (argv.dir)
113+
argv.dir = normalize(argv.dir)
114+
109115
return argv
110116
}
111117

0 commit comments

Comments
 (0)
Please sign in to comment.