Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump @playwright/test from 1.37.1 to 1.44.0 #969

Merged
merged 3 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading