Skip to content

Commit 1783ab0

Browse files
committed
[fix] Dont use -i when running vows because it supresses --target= and --proxy= CLI arguments
1 parent a454666 commit 1783ab0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
},
3636
"scripts": {
3737
"test": "npm run-script test-http && npm run-script test-https",
38-
"test-http": "vows --spec -i && vows --spec -i --target=https",
39-
"test-https": "vows --spec -i --proxy=https && vows --spec -i --proxy=https --target=https",
38+
"test-http": "vows --spec && vows --spec --target=https",
39+
"test-https": "vows --spec --proxy=https && vows --spec --proxy=https --target=https",
4040
"test-core": "test/core/run"
4141
},
4242
"engines": {

test/helpers/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Object.defineProperty(exports, 'protocols', {
4646
//
4747
Object.defineProperty(exports, 'nextPort', {
4848
get: function () {
49-
var current = this.port || 8000;
49+
var current = this.port || 9050;
5050
this.port = current + 1;
5151
return current;
5252
}

0 commit comments

Comments
 (0)