Skip to content

Commit

Permalink
chore(deps-dev): bump @playwright/test from 1.37.1 to 1.44.0 (#969)
Browse files Browse the repository at this point in the history
* ---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Disable webkit tests

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nicolas Ayral Seydoux <[email protected]>
  • Loading branch information
dependabot[bot] and NSeydoux authored May 21, 2024
1 parent 04d99e8 commit d3e41bb
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 39 deletions.
66 changes: 40 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"@inrupt/jest-jsdom-polyfills": "^3.0.1",
"@inrupt/solid-client": "^2.0.0",
"@inrupt/solid-client-authn-node": "^2.0.0",
"@playwright/test": "~1.37.0",
"@playwright/test": "~1.44.0",
"@rushstack/eslint-patch": "^1.1.4",
"@skypack/package-check": "^0.2.2",
"@types/events": "^3.0.0",
Expand Down
25 changes: 13 additions & 12 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,25 @@ const config: PlaywrightTestConfig = {
}. Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0`,
},
},
// {
// name: "Chromium",
// use: {
// browserName: "chromium",
// userAgent: `Browser-based solid-client-access-grant end-to-end tests running ${
// process.env.CI === "true" ? "in CI" : "locally"
// }. Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36`,
// },
// },
{
name: "WebKit",
name: "Chromium",
use: {
browserName: "webkit",
browserName: "chromium",
userAgent: `Browser-based solid-client-access-grant end-to-end tests running ${
process.env.CI === "true" ? "in CI" : "locally"
}. Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1`,
}. Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36`,
},
},
// Webkit is very flaky on playwright. We will experiment with browserstack, and are disabling this in the meantime.
// {
// name: "WebKit",
// use: {
// browserName: "webkit",
// userAgent: `Browser-based solid-client-access-grant end-to-end tests running ${
// process.env.CI === "true" ? "in CI" : "locally"
// }. Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1`,
// },
// },
],
};

Expand Down

0 comments on commit d3e41bb

Please sign in to comment.