Skip to content

Commit ca2b791

Browse files
committed
add extends: true to exercise solution
1 parent 14fe52e commit ca2b791

File tree

1 file changed

+2
-1
lines changed
  • exercises/02.vitest-browser-mode/05.solution.multiple-workspaces

1 file changed

+2
-1
lines changed

exercises/02.vitest-browser-mode/05.solution.multiple-workspaces/README.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Workspaces are listed in the `test.workspace` property in your Vitest config, an
1212

1313
I will define two workspaces:
1414

15-
```ts filename=vite.config.ts add=10-16,19-33
15+
```ts filename=vite.config.ts add=10-16,19-34
1616
/// <reference types="vitest" />
1717
import { defineConfig } from 'vite'
1818
import react from '@vitejs/plugin-react'
@@ -31,6 +31,7 @@ export default defineConfig({
3131
},
3232
},
3333
{
34+
extends: true,
3435
test: {
3536
name: 'browser',
3637
globals: true,

0 commit comments

Comments
 (0)