diff --git a/__test__/index.test.js b/__test__/index.test.js index 3ba97c7..6d28470 100644 --- a/__test__/index.test.js +++ b/__test__/index.test.js @@ -2,10 +2,10 @@ const request = require("supertest"); const app = require("../index"); describe("Get route", () => { - it("page should return hello world", async () => { + it("page should return hello Mr Jenkins", async () => { const res = await request(app).get("/"); expect(res.statusCode).toEqual(200); - expect(res.body).toEqual("Hello world"); + expect(res.body).toEqual("Hello Mr Jenkins"); }); });