Skip to content

Commit

Permalink
TEST COMMIT
Browse files Browse the repository at this point in the history
- try to see whats causing the 18.x failures
  • Loading branch information
isaacgr committed Oct 8, 2023
1 parent d5fa6ba commit b1881ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/server/http-server.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 7,7 @@ const { serverHttp, serverHttpV1 } = require("../test-server");

chai.use(chaiHttp);

const httpRequest = chai.request("http://localhost:8100");
const httpRequest = chai.request("http://127.0.0.1:8100");

describe("Http Server", () => {
after((done) => {
Expand Down Expand Up @@ -137,6 137,7 @@ describe("Http Server", () => {
.set("Content-Type", "application/json")
.send("{]\n")
.end((error, response) => {
console.log(error, response);
expect(JSON.parse(response.text)).to.be.eql({
jsonrpc: "2.0",
error: { code: -32700, message: "Parse Error" },
Expand Down

0 comments on commit b1881ed

Please sign in to comment.