vitest 0.0.26 → 0.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/entry.js +1 -1
- package/package.json +1 -1
package/dist/node/entry.js
CHANGED
|
@@ -3,4 +3,4 @@ if (!process.__vite_node__ || !process.__vitest__)
|
|
|
3
3
|
throw new Error('Vitest can only run in vite-node environment, please use the CLI to start the process');
|
|
4
4
|
const inlineOptions = process.__vite_node__.server.config.test || {};
|
|
5
5
|
const cliOptions = process.__vitest__.options || {};
|
|
6
|
-
await run(Object.assign(Object.assign({},
|
|
6
|
+
await run(Object.assign(Object.assign({}, cliOptions), inlineOptions));
|