Skip to content

Commit f0716b9

Browse files
renovate[bot]9aoy
andauthored
chore(deps): update all non-major dependencies (#1433)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: 9aoy <9aoyuao@gmail.com>
1 parent 09fda1a commit f0716b9

23 files changed

Lines changed: 104 additions & 96 deletions

File tree

e2e/browser-mode/watch.test.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ describe('browser mode - watch', () => {
3636
// Both import from src/helper.ts
3737
await cli.waitForStdout('Duration');
3838
expect(cli.stdout).toMatch('Test Files 2 passed');
39+
if (!cli.stdout.includes('Waiting for file changes...')) {
40+
await cli.waitForStdout('Waiting for file changes...');
41+
}
3942

4043
const helperPath = path.join(fixturesTargetPath, 'src/helper.ts');
4144

@@ -57,6 +60,9 @@ describe('browser mode - watch', () => {
5760
);
5861
// Wait for test execution result (proves the rerun actually executed)
5962
await cli.waitForStdout("expected 'world' to be 'hello'");
63+
if (!cli.stdout.includes('Waiting for file changes...')) {
64+
await cli.waitForStdout('Waiting for file changes...');
65+
}
6066

6167
// ========== Fix source file ==========
6268
cli.resetStd();

e2e/dom/fixtures/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@testing-library/react": "^16.3.2",
2020
"@types/react": "^19.2.17",
2121
"@types/react-dom": "^19.2.3",
22-
"happy-dom": "^20.10.3",
22+
"happy-dom": "^20.10.4",
2323
"jsdom": "^29.1.1",
2424
"typescript": "^6.0.3"
2525
}

e2e/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"devDependencies": {
1212
"@rsbuild/core": "~2.0.15",
1313
"@rsbuild/plugin-react": "^2.0.1",
14-
"@rslib/core": "0.22.1",
14+
"@rslib/core": "0.23.0",
1515
"@rstest/browser": "workspace:*",
1616
"@rstest/browser-react": "workspace:*",
1717
"@rstest/core": "workspace:*",
@@ -26,7 +26,7 @@
2626
"@types/jest-image-snapshot": "^6.4.1",
2727
"@types/react": "^19.2.17",
2828
"@types/react-dom": "^19.2.3",
29-
"axios": "^1.17.0",
29+
"axios": "^1.18.0",
3030
"cross-env": "^10.1.0",
3131
"fs-extra": "^11.3.5",
3232
"is-url": "^1.2.4",

examples/browser-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@rstest/core": "workspace:*",
1818
"@types/react": "^19.2.17",
1919
"@types/react-dom": "^19.2.3",
20-
"playwright": "^1.60.0",
20+
"playwright": "^1.61.0",
2121
"typescript": "^6.0.3"
2222
}
2323
}

examples/react-rsbuild/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@testing-library/react": "^16.3.2",
2323
"@types/react": "^19.2.17",
2424
"@types/react-dom": "^19.2.3",
25-
"happy-dom": "^20.10.3",
25+
"happy-dom": "^20.10.4",
2626
"typescript": "^6.0.3"
2727
}
2828
}

examples/react-rspack-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@rstest/core": "workspace:*",
2525
"@types/react": "^19.2.17",
2626
"@types/react-dom": "^19.2.3",
27-
"playwright": "^1.60.0",
27+
"playwright": "^1.61.0",
2828
"typescript": "^6.0.3"
2929
}
3030
}

examples/react-rspack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@testing-library/react": "^16.3.2",
2727
"@types/react": "^19.2.17",
2828
"@types/react-dom": "^19.2.3",
29-
"happy-dom": "^20.10.3",
29+
"happy-dom": "^20.10.4",
3030
"react-refresh": "^0.18.0",
3131
"typescript": "^6.0.3"
3232
}

examples/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@testing-library/react": "^16.3.2",
2525
"@types/react": "^19.2.17",
2626
"@types/react-dom": "^19.2.3",
27-
"happy-dom": "^20.10.3",
27+
"happy-dom": "^20.10.4",
2828
"typescript": "^6.0.3"
2929
}
3030
}

examples/svelte-rsbuild/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@rsbuild/plugin-svelte": "^2.0.0",
1515
"@rstest/adapter-rsbuild": "workspace:*",
1616
"@rstest/core": "workspace:*",
17-
"happy-dom": "^20.10.3",
17+
"happy-dom": "^20.10.4",
1818
"svelte": "^5.56.3",
1919
"typescript": "^6.0.3"
2020
}

examples/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@vue/compiler-dom": "^3.5.38",
2222
"@vue/server-renderer": "^3.5.38",
2323
"@vue/test-utils": "^2.4.11",
24-
"happy-dom": "^20.10.3",
24+
"happy-dom": "^20.10.4",
2525
"typescript": "^6.0.3"
2626
}
2727
}

0 commit comments

Comments
 (0)