Skip to content

Commit 27a3cf7

Browse files
committed
Fix tests failing after webpack release
1 parent 1203a1c commit 27a3cf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Server.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe("Server", function() {
4545
it("GET request to bundle file", function(done) {
4646
request(app).get("/public/bundle.js")
4747
.expect("Content-Type", "application/javascript; charset=UTF-8")
48-
.expect("Content-Length", "2780")
48+
.expect("Content-Length", "2853")
4949
.expect("Access-Control-Allow-Origin", "*")
5050
.expect(200, /console\.log\("Hey\."\)/, done);
5151
});
@@ -120,7 +120,7 @@ describe("Server", function() {
120120

121121
it("GET request to bundle file", function(done) {
122122
request(app).get("/bundle.js")
123-
.expect("Content-Length", "2780")
123+
.expect("Content-Length", "2853")
124124
.expect(200, /console\.log\("Hey\."\)/, done);
125125
});
126126
});

0 commit comments

Comments
 (0)