mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
2402cd59bc
The entrypoint script only passed the first argument so if you specified multiple test files it would only run the first. This will need the docker image to be rebuilt on each machine you run it on to take effect.
9 lines
197 B
Bash
9 lines
197 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
yarn link
|
|
yarn --cwd ../element-web install
|
|
yarn --cwd ../element-web link matrix-react-sdk
|
|
npx playwright test --update-snapshots --reporter line --project='Legacy Crypto' $@
|