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 a6ff875 commit 51fe23dCopy full SHA for 51fe23d
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