vitest/docs/guide/examples/projects-workspace.md
Vladimir ea4f167e12
docs: add blog post for 3.2 (#8001)
Co-authored-by: Ari Perkkiö <ari.perkkio@gmail.com>
Co-authored-by: patak-dev <matias.capeletto@gmail.com>
2025-06-02 11:53:40 +02:00

14 lines
295 B
Markdown

```ts
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
// "test.workspace" is now "test.projects"
workspace: [ // [!code --]
projects: [ // [!code ++]
{ test: { name: "Unit" } },
{ test: { name: "Integration" } },
],
},
});
```