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>
295 B
295 B
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" } },
],
},
});