You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/guide/workspace.md
+2-5
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ export default [
26
26
```
27
27
:::
28
28
29
-
Vitest will consider every folder in `packages` as a separate project even if it doesn't have a config file inside.
29
+
Vitest will consider every folder in `packages` as a separate project even if it doesn't have a config file inside. Since Vitest 2.1, if this glob pattern matches any file it will be considered a Vitest config even if it doesn't have a `vitest` in its name.
30
30
31
31
::: warning
32
32
Vitest will not consider the root config as a workspace project (so it will not run tests specified in `include`) unless it is specified in this config.
@@ -44,10 +44,6 @@ export default [
44
44
45
45
This pattern will only include projects with `vitest.config` file that includes `e2e` and `unit` before the extension.
46
46
47
-
::: warning
48
-
If you are referencing filenames with glob pattern, make sure your config file starts with `vite.config` or `vitest.config`. Otherwise Vitest will skip it.
49
-
:::
50
-
51
47
You can also define projects with inline config. Workspace file supports using both syntaxes at the same time.
52
48
53
49
:::code-group
@@ -56,6 +52,7 @@ import { defineWorkspace } from 'vitest/config'
56
52
57
53
// defineWorkspace provides a nice type hinting DX
58
54
exportdefaultdefineWorkspace([
55
+
// matches every folder and file inside the `packages` folder
'Project name "test" from "vitest2.config.js" is not unique. The project is already defined by "vitest1.config.js". All projects in a workspace should have unique names. Make sure your configuration is correct.',
44
+
`Project name "test" from "vitest2.config.js" is not unique. The project is already defined by "vitest1.config.js".
45
+
46
+
Your config matched these files:
47
+
- vitest1.config.js
48
+
- vitest2.config.js
49
+
50
+
All projects in a workspace should have unique names. Make sure your configuration is correct.`,
0 commit comments