Skip to content

Commit

Permalink
Update e2e refs
Browse files Browse the repository at this point in the history
  • Loading branch information
ndresx committed Oct 13, 2020
1 parent 10619e6 commit e44e586
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,8 @@ Make sure that all tests are passing and that the code coverage is close to 100%
```sh
yarn test
```

For End-to-End tests, please run the following command:
```sh
yarn test:e2e
```
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"scripts": {
"build": "yarn build:clean && yarn rollup --config",
"build:clean": "rm -rf ./dist mkdir dist",
"build:watch": "yarn build:clean && yarn rollup --config --watch",
"build:watch": "yarn build --watch",
"clean": "rm -rf ./node_modules && rm -rf ./coverage && yarn build:clean",
"lint": "yarn lint:prettier && yarn lint:tslint && yarn lint:tsc",
"lint:prettier": "yarn prettier-check",
Expand All @@ -38,7 +38,7 @@
"test": "jest --coverage",
"test:e2e": "yarn start-server-and-test test:e2e:server http://localhost:1234 \"cypress run\"",
"test:e2e:dev": "yarn start-server-and-test test:e2e:server http://localhost:1234 \"cypress open\"",
"test:e2e:server": "parcel ./e2e/index.html",
"test:e2e:server": "yarn build && parcel ./e2e/index.html",
"test:watch": "jest --watch"
},
"dependencies": {
Expand Down

0 comments on commit e44e586

Please sign in to comment.