Skip to content

Commit bf74acc

Browse files
chore(deps-dev): bump @playwright/test from 1.50.1 to 1.52.0 (#1420)
* chore(deps-dev): bump @playwright/test from 1.50.1 to 1.52.0 Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.50.1 to 1.52.0. - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.50.1...v1.52.0) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-version: 1.52.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * update snapshots and configs to prevent crashing --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Scott <jamescscott@google.com>
1 parent f91fd2e commit bf74acc

File tree

9 files changed

+23
-14
lines changed

9 files changed

+23
-14
lines changed

.devcontainer/devcontainer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,12 @@
7575
// gcloud CLI
7676
8085
7777
],
78-
"runArgs": ["--env-file", ".devcontainer/devcontainer.env"],
78+
"runArgs": [
79+
"--env-file",
80+
".devcontainer/devcontainer.env",
81+
"--init",
82+
"--ipc=host"
83+
],
7984
// Use 'forwardPorts' to make a list of ports inside the container available locally.
8085
// "forwardPorts": [],
8186
// Use 'postCreateCommand' to run commands after the container is created.
-727 Bytes
Loading
-716 Bytes
Loading
-850 Bytes
Loading
-503 Bytes
Loading
-1.57 KB
Loading

frontend/web-test-runner.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ export default /** @type {import("@web/test-runner").TestRunnerConfig} */ ({
7171
browsers: [
7272
playwrightLauncher({
7373
product: 'chromium',
74+
// For some we need to limit the concurrency for Chromium to ensure test stability.
75+
concurrency: 1,
7476
}),
7577
playwrightLauncher({
7678
product: 'firefox',
@@ -79,6 +81,8 @@ export default /** @type {import("@web/test-runner").TestRunnerConfig} */ ({
7981
}),
8082
playwrightLauncher({
8183
product: 'webkit',
84+
// For some we need to limit the concurrency for Safari to ensure test stability.
85+
concurrency: 1,
8286
}),
8387
],
8488
});

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"lib/gen/openapi/ts-webstatus.dev-backend-types"
1313
],
1414
"devDependencies": {
15-
"@playwright/test": "^1.50.1",
15+
"@playwright/test": "^1.52.0",
1616
"@types/node": "^22.9.0",
1717
"concurrently": "^9.1.2",
1818
"eslint-plugin-n": "^17.17.0",

0 commit comments

Comments
 (0)