Skip to content

Commit

Permalink
playwright: Upgrade end-to-end testing tool
Browse files Browse the repository at this point in the history
Upgrade end-to-end testing tool playwright to the latest version 1.47.1.
It is installed locally with npm and used on CI via docker image:

Form npm upgrade run:

	npx --prefix e2e -y npm-check-updates --packageFile e2e/package.json -u
	npm --prefix e2e install
	npx --prefix e2e playwright install

For Makefile upgrade manually update OCI image line.
  • Loading branch information
juliaogris committed Sep 17, 2024
1 parent 1916319 commit 776230b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ define PLAYWRIGHT_CMD_LOCAL
npx --prefix e2e playwright test --config e2e $(PLAYWRIGHT_ARGS)
endef

PLAYWRIGHT_OCI_IMAGE = mcr.microsoft.com/playwright:v1.46.1-jammy
PLAYWRIGHT_OCI_IMAGE = mcr.microsoft.com/playwright:v1.47.1-jammy
PLAYWRIGHT_CMD_DOCKER = docker run --rm \
--volume $$(pwd):/work/ -w /work/ \
--user $(shell id -u):$(shell id -g) \
Expand Down
26 changes: 13 additions & 13 deletions e2e/package-lock.json

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

4 changes: 2 additions & 2 deletions e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": "true",
"devDependencies": {
"@playwright/test": "^1.46.1",
"playwright": "^1.46.1"
"@playwright/test": "^1.47.1",
"playwright": "^1.47.1"
}
}

0 comments on commit 776230b

Please sign in to comment.