element-web/playwright
Michael Telatynski d827723b3d
Migrate user-onboarding-*.spec.ts from Cypress to Playwright (#11927)
Co-authored-by: R Midhun Suresh <hi@midhun.dev>
Co-authored-by: Johannes Marbach <johannesm@element.io>
Co-authored-by: Milton Moura <miltonmoura@gmail.com>
2023-11-27 12:11:00 +00:00
..
e2e Migrate user-onboarding-*.spec.ts from Cypress to Playwright (#11927) 2023-11-27 12:11:00 +00:00
pages Migrate user-onboarding-*.spec.ts from Cypress to Playwright (#11927) 2023-11-27 12:11:00 +00:00
plugins Migrate user-onboarding-*.spec.ts from Cypress to Playwright (#11927) 2023-11-27 12:11:00 +00:00
.gitignore Use Playwright snapshot utility instead of Percy (#11922) 2023-11-24 12:32:07 +00:00
element-web-test.ts Migrate user-onboarding-*.spec.ts from Cypress to Playwright (#11927) 2023-11-27 12:11:00 +00:00
global.d.ts Migrate user-onboarding-*.spec.ts from Cypress to Playwright (#11927) 2023-11-27 12:11:00 +00:00
README.md Use Playwright snapshot utility instead of Percy (#11922) 2023-11-24 12:32:07 +00:00
tsconfig.json Migrate user-onboarding-*.spec.ts from Cypress to Playwright (#11927) 2023-11-27 12:11:00 +00:00

To update snapshots you will need to run Playwright on a Linux machine. If you have access to docker then you can use the following:

docker run \
    --rm \
    --network host \
    -v $(pwd)/../:/work/ \
    -v playwright-ew-node-modules:/work/element-web/node_modules \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v /tmp/:/tmp/ \
    -w /work/matrix-react-sdk \
    -it mcr.microsoft.com/playwright:v1.40.0-jammy \
    sh -c "apt-get update && apt-get -y install docker.io && yarn --cwd ../element-web install && npx playwright test --update-snapshots --reporter line"