Skip to content

Commit

Permalink
[fix] Dont use -i when running vows because it supresses `--target=…
Browse files Browse the repository at this point in the history
…` and `--proxy=` CLI arguments
  • Loading branch information
indexzero committed Jul 26, 2012
1 parent a454666 commit 1783ab0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -35,8 +35,8 @@
},
"scripts": {
"test": "npm run-script test-http && npm run-script test-https",
"test-http": "vows --spec -i && vows --spec -i --target=https",
"test-https": "vows --spec -i --proxy=https && vows --spec -i --proxy=https --target=https",
"test-http": "vows --spec && vows --spec --target=https",
"test-https": "vows --spec --proxy=https && vows --spec --proxy=https --target=https",
"test-core": "test/core/run"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/index.js
Expand Up @@ -46,7 +46,7 @@ Object.defineProperty(exports, 'protocols', {
//
Object.defineProperty(exports, 'nextPort', {
get: function () {
var current = this.port || 8000;
var current = this.port || 9050;
this.port = current + 1;
return current;
}
Expand Down

0 comments on commit 1783ab0

Please sign in to comment.