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.
2 parents b4afaf3 + 51fe23d commit 61d431bCopy full SHA for 61d431b
test/core/proxy.test.js
@@ -57,7 +57,7 @@ describe('Proxy', () => {
57
expect(this.response.writeHead.calledOnce).to.be.equal(true);
58
assert(this.response.writeHead.calledWith(200, {'content-type': 'application/json; charset=utf-8', 'accept': 'application/json', 'WWW-Authenticate': 'Basic realm="WS Reconnect Proxy"'}));
59
expect(this.response.end.calledOnce).to.be.equal(true);
60
- assert(this.response.writeHead.calledWith(JSON.stringify({"status" : "Running"})));
+ assert(this.response.writeHead.calledWith(JSON.stringify({'status' : 'Running'})));
61
});
62
63
it('should set connection id', () => {
0 commit comments