Skip to content

Commit

Permalink
fix: Bump playwright (#824)
Browse files Browse the repository at this point in the history
## Related Issues

Fixes <link_to_github_issue>

## Related PRs

| branch       | PR         |
| ------------ | ---------- |
| service a PR | Link to PR |
| service b PR | Link to PR |

## Description

A few sentences describing the overall goals of the pull request's
commits.

## Must

- [ ] Tests
- [ ] Documentation (if applicable)

---------

Co-authored-by: Nir Gur Arie <nir@descope.com>
  • Loading branch information
tomerlichtash and nirgur authored Oct 15, 2024
1 parent d4a6d11 commit da5a753
Show file tree
Hide file tree
Showing 10 changed files with 561 additions and 344 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
container:
# the container version should be the same as the version of the Playwright package
image: mcr.microsoft.com/playwright:v1.41.2-jammy
image: mcr.microsoft.com/playwright:v1.47.0-jammy
options: --user root
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"lint-staged": "^15.0.0",
"ngx-deploy-npm": "^8.0.0",
"nx": "19.5.2",
"playwright": "1.41.2",
"playwright": "1.47.0",
"prettier": "^3.0.0",
"ts-jest": "29.1.5",
"ts-node": "10.9.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/access-key-management-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@descope/web-components-ui": "latest",
"@open-wc/rollup-plugin-html": "1.2.5",
"@playwright/test": "^1.41.1",
"@playwright/test": "1.47.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/applications-portal-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@descope/web-components-ui": "latest",
"@open-wc/rollup-plugin-html": "1.2.5",
"@playwright/test": "^1.41.1",
"@playwright/test": "1.47.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ test.describe('widget', () => {
.locator('input')
.first();

await page.waitForTimeout(1000);

// focus search input
await searchInput.focus();

Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/audit-management-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@descope/web-components-ui": "latest",
"@open-wc/rollup-plugin-html": "1.2.5",
"@playwright/test": "^1.41.1",
"@playwright/test": "1.47.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/role-management-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@descope/web-components-ui": "latest",
"@open-wc/rollup-plugin-html": "1.2.5",
"@playwright/test": "^1.41.1",
"@playwright/test": "1.47.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/user-management-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@descope/web-components-ui": "latest",
"@open-wc/rollup-plugin-html": "1.2.5",
"@playwright/test": "^1.41.1",
"@playwright/test": "1.47.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/user-profile-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@descope/web-components-ui": "latest",
"@open-wc/rollup-plugin-html": "1.2.5",
"@playwright/test": "^1.41.1",
"@playwright/test": "1.47.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
Expand Down
Loading

0 comments on commit da5a753

Please sign in to comment.