Skip to content

Commit 5d4f29f

Browse files
committed
chore: update testing harness pw version when rolling
1 parent b827163 commit 5d4f29f

File tree

3 files changed

+31
-26
lines changed

3 files changed

+31
-26
lines changed

build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,15 @@ function roll_driver() {
5050
rm -rf "src/Playwright/Transport/Protocol/Generated/"
5151
node "$upstream_repo_path/utils/generate_dotnet_channels.js" "src/Playwright"
5252
echo "Formatting source code..."
53-
dotnet format src/Playwright
53+
# dotnet format src/Playwright
5454

5555
download_driver
5656

57+
pushd src/Playwright.TestingHarnessTest/
58+
echo "Updating driver version in tests..."
59+
npm install "@playwright/test@${new_driver_version}"
60+
popd
61+
5762
echo "done"
5863
}
5964

src/Playwright.TestingHarnessTest/package-lock.json

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

src/Playwright.TestingHarnessTest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "playwright.testingharnesstest",
33
"private": true,
44
"devDependencies": {
5+
"@playwright/test": "^1.50.1",
56
"@types/node": "^22.12.0",
6-
"fast-xml-parser": "^4.5.0",
7-
"@playwright/test": "1.50.0"
7+
"fast-xml-parser": "^4.5.0"
88
}
99
}

0 commit comments

Comments
 (0)