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

fix: Update outdated Playwright version in test config #268

Merged
merged 1 commit into from
Jun 25, 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
2 changes: 1 addition & 1 deletion tests/fixtures/local/basic-js/.sauce/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sauce:
build: "$BUILD_ID"
rootDir: .
playwright:
version: 1.29.2
version: 1.44.0
suites:
- name: "saucy test - webkit"
platformName: "Windows 10"
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/local/broken-tests/.sauce/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sauce:
build: "$BUILD_ID"
rootDir: .
playwright:
version: 1.29.2
version: 1.44.0
suites:
- name: "default"
testMatch:
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/local/broken-tests/sauce-runner.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"rootDir": ".",
"playwright": {
"version": "1.29.2"
"version": "1.44.0"
},
"suites": [
{
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/local/config-merging/.sauce/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sauce:
build: Release $CI_COMMIT_SHORT_SHA
rootDir: .
playwright:
version: 1.29.2
version: 1.44.0
suites:
- name: default
params:
Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures/post-release/.sauce/config_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rootDir: .
playwright:
# CAUTION: This has to be an already deployed framework version in the cloud. Not necessarily the one you want to test.
# Then use --runner-version to specify the release you actually want to use.
version: 1.43.1
version: 1.44.0
suites:
- name: "Post Release Test (macOS) - chromium"
platformName: "macOS 12"
Expand All @@ -19,7 +19,7 @@ suites:
browserName: "chromium"

- name: "Post Release Test (macOS) - webkit"
platformName: "macOS 12"
platformName: "macOS 13"
testMatch: ['.*.js']
params:
browserName: "webkit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sauce:
defaults:
timeout: 5m
playwright:
version: 1.29.2
version: 1.44.0
rootDir: ./
suites:
- name: My Cucumber Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sauce:
defaults:
timeout: 5m
playwright:
version: 1.29.2
version: 1.44.0
rootDir: ./
suites:
- name: My Cucumber Test
Expand Down
Loading