File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -508,7 +508,22 @@ const page = await createPage('/page')
508
508
509
509
#### Testing with Playwright Test Runner
510
510
511
- We also provide first-class support for using ` @nuxt/test-utils ` within [ the Playwright test runner] ( https://playwright.dev/docs/intro ) .
511
+ We also provide first-class support for testing Nuxt within [ the Playwright test runner] ( https://playwright.dev/docs/intro ) .
512
+
513
+ :: code-group
514
+ ``` bash [yarn]
515
+ yarn add --dev @playwright/test @nuxt/test-utils
516
+ ```
517
+ ``` bash [npm]
518
+ npm i --save-dev @playwright/test @nuxt/test-utils
519
+ ```
520
+ ``` bash [pnpm]
521
+ pnpm add -D @playwright/test @nuxt/test-utils
522
+ ```
523
+ ``` bash [bun]
524
+ bun add --dev @playwright/test @nuxt/test-utils
525
+ ```
526
+ ::
512
527
513
528
You can provide global Nuxt configuration, with the same configuration details as the ` setup() ` function mentioned earlier in this section.
514
529
You can’t perform that action at this time.
0 commit comments