Update package readmes for #516 (#569)

* update packages/driver readme close #516 

* update packages/electron readme

* update packages/extension readme

* update packages/http-proxy readme and cross-env

* update packages/launcher readme

* update bin-up

* update reporter readme

* update runner readme

* update socket readme
This commit is contained in:
Gleb Bahmutov
2017-10-05 18:38:06 +00:00
committed by GitHub
parent 08bb0840b8
commit 05210dc24a
12 changed files with 92 additions and 278 deletions

View File

@@ -1,29 +1,18 @@
# Cypress Core Extension
> Intercepts requests from the website under test
## Install
Root install is preferred (see `CONTRIBUTING.md`), but if you must
* `npm install`
* `npm run build`
## Developing
**Testing**
```bash
npm run test-once
npm test
```
## Changelog
#### 0.1.5 - *(04/20/17)*
- bump cypress coffee script and releaser dep
#### 0.1.4 - *(10/21/16)*
- add server destroy to https helper
#### 0.1.3 - *(08/24/16)*
- ref fork
#### 0.1.2 - *(08/24/16)*
- fix segfault errors
#### 0.1.1 - *(08/24/16)*
- fix devDep to dep
#### 0.1.0 - *(06/28/16)*
- initial release

View File

@@ -6,8 +6,8 @@
"scripts": {
"start": "node index.js",
"clean-deps": "rm -rf node_modules",
"test": "NODE_ENV=test $(bin-up mocha) --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "NODE_ENV=test $(bin-up mocha) --watch",
"test": "cross-env NODE_ENV=test bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "cross-env NODE_ENV=test bin-up mocha --watch",
"https": "node https.js",
"release": "releaser"
},
@@ -16,8 +16,9 @@
],
"devDependencies": {
"@cypress/releaser": "0.1.12",
"bin-up": "^1.0.1",
"bin-up": "^1.1.0",
"chai": "^3.5.0",
"cross-env": "^5.0.5",
"http-mitm-proxy": "^0.5.1",
"request": "^2.72.0",
"request-promise": "^3.0.0",