Skip to content

Commit

Permalink
Update deps (#66)
Browse files Browse the repository at this point in the history
* Update copy-webpack plugin

* Update webpack and its cli
  • Loading branch information
dvdvdmt authored Sep 19, 2022
1 parent f7ff76f commit 5b98c1e
Show file tree
Hide file tree
Showing 4 changed files with 970 additions and 1,170 deletions.
25 changes: 25 additions & 0 deletions e2e/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## How to run e2e tests inside docker container?

1. Build [puppeteer-headful](https://github.com/mujo-code/puppeteer-headful) image

```shell
git clone https://github.com/mujo-code/puppeteer-headful.git
```

```shell
docker build -t puppeteer-headful ./puppeteer-headful
# For Apple M1 this will fail
```

2. Build e2e tests

```shell
npm run build:e2e
```

3. Run tests in container

```shell
docker container run -it --mount type=bind,source="$(pwd)",target=/app -w=/app puppeteer-headful npm run test:e2e
```

## Communication with extension

There are two ways of communication between extension and Puppeteer. The first one is using
Expand Down
Loading

0 comments on commit 5b98c1e

Please sign in to comment.