-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add e2e testing suite using Playwright (#144)
- Loading branch information
1 parent
0407295
commit 05c00d9
Showing
13 changed files
with
4,311 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# E2E Testing with Playwright | ||
|
||
We provide a basic end-to-end (E2E) via Playwright, testing against the Leaflet Adapter | ||
|
||
## Installation | ||
|
||
Installation can be down via npm like so: | ||
|
||
```shell | ||
npm install | ||
``` | ||
|
||
## Running | ||
|
||
You can run the tests headless (i.e. no opening of Chromimum) like so: | ||
|
||
```shell | ||
npm run test | ||
``` | ||
|
||
Or you can run them headed (i.e. Chromimum will open and you will see the tests run) like so: | ||
|
||
```shell | ||
npm run test:headed | ||
``` |
Oops, something went wrong.