-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,15 +24,16 @@ to test in browser environment (provided by [playwright](https://playwright.dev/ | |
If you have never installed playwright before or updated it, you need to install the browsers | ||
by executing: | ||
|
||
````bash | ||
yarn playwright install | ||
```bash | ||
npx playwright install | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
fcollonval
Author
Member
|
||
``` | ||
|
||
To run the tests, run: | ||
|
||
```bash | ||
yarn build:test | ||
yarn test # optionally test:chromium, test:firefox, or test:webkit | ||
```` | ||
``` | ||
|
||
You can run the tests manually to debug them by going inside one package (e.g. `packages/application`) | ||
and then executing `yarn test:debug`. This should open your browser | ||
|
I thought about npx, but that would potentially mask if
yarn install
doesn't install the Playwright CLI, which is what we want?