We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce1373f commit e92de8cCopy full SHA for e92de8c
test/Server.test.js
@@ -45,7 +45,7 @@ describe("Server", function() {
45
it("GET request to bundle file", function(done) {
46
request(app).get("/public/bundle.js")
47
.expect("Content-Type", "application/javascript; charset=UTF-8")
48
- .expect("Content-Length", "2853")
+ .expect("Content-Length", "2859")
49
.expect("Access-Control-Allow-Origin", "*")
50
.expect(200, /console\.log\("Hey\."\)/, done);
51
});
@@ -120,7 +120,7 @@ describe("Server", function() {
120
121
122
request(app).get("/bundle.js")
123
124
125
126
0 commit comments