Skip to content

Commit b794e6a

Browse files
committed
deps: update all - fixes #1187 #1158
1 parent 4fa6d74 commit b794e6a

2 files changed

Lines changed: 25 additions & 33 deletions

File tree

package.json

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"browser-sync-client": "^2.3.3",
3636
"browser-sync-ui": "0.6.0",
37-
"bs-recipes": "1.2.2",
37+
"bs-recipes": "1.2.3",
3838
"chokidar": "1.6.0",
3939
"connect": "3.4.1",
4040
"dev-ip": "^1.0.1",
@@ -56,35 +56,34 @@
5656
"server-destroy": "1.0.1",
5757
"socket.io": "1.4.8",
5858
"ua-parser-js": "0.7.10",
59-
"yargs": "4.8.1"
59+
"yargs": "5.0.0"
6060
},
6161
"devDependencies": {
62-
"browser-sync-spa": "1.0.2",
62+
"browser-sync-spa": "1.0.3",
6363
"bs-html-injector": "3.0.2",
6464
"bs-latency": "1.0.0",
6565
"bs-rewrite-rules": "1.0.0",
6666
"bs-snippet-injector": "2.0.1",
67-
"chai": "3.2.0",
68-
"chalk": "1.1.1",
69-
"compression": "1.6.1",
70-
"eslint": "1.3.1",
71-
"graceful-fs": "3.0.8",
72-
"gulp": "3.9.0",
67+
"chai": "3.5.0",
68+
"chalk": "1.1.3",
69+
"compression": "1.6.2",
70+
"eslint": "3.4.0",
71+
"graceful-fs": "4.1.6",
72+
"gulp": "3.9.1",
7373
"gulp-contribs": "0.0.3",
74-
"gulp-conventional-changelog": "0.4.0",
75-
"gulp-filter": "2.0.2",
76-
"istanbul": "0.3.19",
74+
"gulp-conventional-changelog": "1.1.0",
75+
"gulp-filter": "4.0.0",
76+
"istanbul": "0.4.5",
7777
"istanbul-coveralls": "1.0.3",
78-
"lodash-cli": "4.13.1",
79-
"mocha": "2.3.0",
78+
"lodash-cli": "4.15.0",
79+
"mocha": "3.0.2",
8080
"q": "1.4.1",
8181
"request": "2.74.0",
82-
"rimraf": "2.5.2",
83-
"sinon": "1.15.4",
84-
"slugify": "0.1.1",
82+
"rimraf": "2.5.4",
83+
"sinon": "1.17.5",
8584
"socket.io-client": "1.4.8",
86-
"supertest": "1.1.0",
87-
"vinyl": "0.5.3"
85+
"supertest": "2.0.0",
86+
"vinyl": "1.2.0"
8887
},
8988
"keywords": [
9089
"browser sync",

test/specs/e2e/server/e2e.server.secure.js

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ describe("E2E TLS server options test", function () {
5252
});
5353
});
5454

55-
describe("E2E TLS server test", function () {
55+
describe("E2E TLS server test (1)", function () {
5656

5757
this.timeout(15000);
5858

@@ -104,13 +104,11 @@ describe("E2E TLS server test", function () {
104104
});
105105
});
106106

107-
describe("E2E TLS server test", function () {
107+
describe("E2E TLS server test (2)", function () {
108108

109109
this.timeout(15000);
110110

111-
var bs;
112-
113-
before(function (done) {
111+
it("Does not use HTTPS if false", function (done) {
114112

115113
browserSync.reset();
116114

@@ -123,14 +121,9 @@ describe("E2E TLS server test", function () {
123121
open: false
124122
};
125123

126-
bs = browserSync(config, done).instance;
127-
});
128-
129-
after(function () {
130-
bs.cleanup();
131-
});
132-
133-
it("Does not use HTTPS if false", function () {
134-
assert.notInclude(bs.options.get(["urls", "local"]), "https");
124+
browserSync(config, function (err, bs) {
125+
assert.notInclude(bs.options.getIn(["urls", "local"]), "https");
126+
done();
127+
});
135128
});
136129
});

0 commit comments

Comments
 (0)