@nuxt/test-utils 3.3.1 → 3.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +7 -7
package/dist/index.mjs CHANGED
@@ -192,7 +192,7 @@ async function loadFixture() {
192
192
  if (!ctx.options.dev) {
193
193
  const randomId = Math.random().toString(36).slice(2, 8);
194
194
  const buildDir = resolve(ctx.options.rootDir, ".nuxt", randomId);
195
- Object.assign(ctx.options.nuxtConfig, {
195
+ ctx.options.nuxtConfig = defu(ctx.options.nuxtConfig, {
196
196
  buildDir,
197
197
  nitro: {
198
198
  output: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/test-utils",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "repository": "nuxt/nuxt",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,20 +15,20 @@
15
15
  "dist"
16
16
  ],
17
17
  "dependencies": {
18
- "@nuxt/kit": "3.3.1",
19
- "@nuxt/schema": "3.3.1",
18
+ "@nuxt/kit": "3.3.2",
19
+ "@nuxt/schema": "3.3.2",
20
20
  "consola": "^2.15.3",
21
21
  "defu": "^6.1.2",
22
- "execa": "^7.1.0",
22
+ "execa": "^7.1.1",
23
23
  "get-port-please": "^3.0.1",
24
- "jiti": "^1.17.2",
24
+ "jiti": "^1.18.2",
25
25
  "ofetch": "^1.0.1",
26
26
  "pathe": "^1.1.0"
27
27
  },
28
28
  "devDependencies": {
29
- "playwright": "^1.31.2",
29
+ "playwright": "^1.32.0",
30
30
  "unbuild": "latest",
31
- "vitest": "^0.29.2"
31
+ "vitest": "^0.29.7"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "vue": "^3.2.47"