We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b03d79 commit ae920f1Copy full SHA for ae920f1
test/Server.test.js
@@ -46,7 +46,6 @@ describe("Server", function() {
46
request(app).get("/public/bundle.js")
47
.expect("Content-Type", "application/javascript; charset=UTF-8")
48
.expect("Content-Length", "2985")
49
- .expect("Access-Control-Allow-Origin", "*")
50
.expect(200, /console\.log\("Hey\."\)/, done);
51
});
52
@@ -59,7 +58,6 @@ describe("Server", function() {
59
58
request(app).get("/public/svg.svg")
60
.expect("Content-Type", "image/svg+xml; charset=UTF-8")
61
.expect("Content-Length", "4778")
62
63
.expect(200, done);
64
65
@@ -79,7 +77,6 @@ describe("Server", function() {
79
77
request(app).get("/public/")
80
78
.expect("Content-Type", "text/html; charset=UTF-8")
81
.expect("Content-Length", "10")
82
83
.expect(200, /My\ Index\./, done);
84
85
0 commit comments