Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions examples/app-vitest-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@
},
"devDependencies": {
"@nuxt/test-utils": "latest",
"@vitest/browser": "3.2.4",
"@vitest/browser": "4.0.16",
"@vitest/browser-playwright": "4.0.16",
"@vue/test-utils": "2.4.6",
"nuxt": "4.2.2",
"typescript": "5.9.3",
"vitest": "3.2.4",
"vitest-browser-vue": "1.1.0"
"vitest": "4.0.16",
"vitest-browser-vue": "2.0.1"
}
}
3 changes: 2 additions & 1 deletion examples/app-vitest-browser/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { defineVitestConfig } from '@nuxt/test-utils/config'
import { playwright } from '@vitest/browser-playwright'

export default defineVitestConfig({
test: {
browser: {
enabled: true,
provider: 'playwright',
provider: playwright(),
instances: [{ browser: 'chromium' }],
},
environment: 'nuxt',
Expand Down
4 changes: 2 additions & 2 deletions examples/app-vitest-full/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"devDependencies": {
"@nuxt/test-utils": "latest",
"@testing-library/vue": "8.1.0",
"@vitest/ui": "3.2.4",
"@vitest/ui": "4.0.16",
"happy-dom": "20.0.11",
"jsdom": "27.4.0",
"listhen": "1.9.0",
"nuxt": "4.2.2",
"typescript": "5.9.3",
"vitest": "3.2.4",
"vitest": "4.0.16",
"vue-tsc": "3.2.2"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/app-vitest-workspace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"happy-dom": "20.0.11",
"playwright-core": "1.57.0",
"typescript": "5.9.3",
"vitest": "3.2.4"
"vitest": "4.0.16"
}
}
2 changes: 1 addition & 1 deletion examples/app-vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"playwright-core": "1.57.0",
"tinyglobby": "0.2.15",
"typescript": "5.9.3",
"vitest": "3.2.4"
"vitest": "4.0.16"
}
}
7 changes: 4 additions & 3 deletions examples/content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
"devDependencies": {
"@nuxt/content": "3.10.0",
"@nuxt/test-utils": "latest",
"@vitest/browser": "3.2.4",
"@vitest/browser": "4.0.16",
"@vitest/browser-playwright": "4.0.16",
"better-sqlite3": "12.5.0",
"nuxt": "4.2.2",
"vitest": "3.2.4",
"vitest-browser-vue": "1.1.0"
"vitest": "4.0.16",
"vitest-browser-vue": "2.0.1"
}
}
5 changes: 3 additions & 2 deletions examples/content/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { defineVitestConfig } from '@nuxt/test-utils/config'
import { playwright } from '@vitest/browser-playwright'

const browserConfig = {
browser: {
enabled: true,
provider: 'playwright',
instances: [{ browser: 'chromium' }],
provider: playwright(),
instances: [{ browser: 'chromium' as const }],
},
environment: 'nuxt',
include: ['tests/browser/**/*.spec.ts'],
Expand Down
2 changes: 1 addition & 1 deletion examples/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"@nuxt/test-utils": "latest",
"@nuxtjs/i18n": "10.2.1",
"nuxt": "4.2.2",
"vitest": "3.2.4"
"vitest": "4.0.16"
}
}
2 changes: 1 addition & 1 deletion examples/module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"@nuxt/module-builder": "1.0.2",
"@nuxt/test-utils": "latest",
"nuxt": "4.2.2",
"vitest": "3.2.4"
"vitest": "4.0.16"
}
}
2 changes: 1 addition & 1 deletion examples/nitro-v3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"playwright-core": "1.57.0",
"tinyglobby": "0.2.15",
"typescript": "5.9.3",
"vitest": "3.2.4"
"vitest": "4.0.16"
}
}
7 changes: 4 additions & 3 deletions examples/nuxt-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
"devDependencies": {
"@nuxt/test-utils": "latest",
"@nuxt/ui": "4.3.0",
"@vitest/browser": "3.2.4",
"@vitest/browser": "4.0.16",
"@vitest/browser-playwright": "4.0.16",
"nuxt": "4.2.2",
"tailwindcss": "4.1.18",
"vitest": "3.2.4",
"vitest-browser-vue": "1.1.0"
"vitest": "4.0.16",
"vitest-browser-vue": "2.0.1"
}
}
5 changes: 3 additions & 2 deletions examples/nuxt-ui/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { defineVitestConfig } from '@nuxt/test-utils/config'
import { playwright } from '@vitest/browser-playwright'

const browserConfig = {
browser: {
enabled: true,
provider: 'playwright',
instances: [{ browser: 'chromium' }],
provider: playwright(),
instances: [{ browser: 'chromium' as const }],
},
environment: 'nuxt',
include: ['tests/browser/**/*.spec.ts'],
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"unbuild": "latest",
"unimport": "5.6.0",
"vite": "7.3.0",
"vitest": "3.2.4",
"vitest": "4.0.16",
"vue-router": "4.6.4",
"vue-tsc": "3.2.2"
},
Expand All @@ -140,7 +140,7 @@
"happy-dom": "*",
"jsdom": "*",
"playwright-core": "^1.43.1",
"vitest": "^3.2.0"
"vitest": "^4.0.2"
},
"peerDependenciesMeta": {
"@cucumber/cucumber": {
Expand Down Expand Up @@ -183,7 +183,7 @@
"rollup": "4.55.1",
"vite": "7.3.0",
"vite-node": "5.2.0",
"vitest": "3.2.4",
"vitest": "4.0.16",
"vue": "^3.5.26"
},
"engines": {
Expand Down
Loading
Loading