mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
Co-authored-by: Ari Perkkiö <ari.perkkio@gmail.com> Co-authored-by: patak-dev <matias.capeletto@gmail.com>
14 lines
295 B
Markdown
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" } },
|
|
],
|
|
},
|
|
});
|
|
```
|