From a7ebfe2b02a4b87aace7d1002ff874fdb92ecb83 Mon Sep 17 00:00:00 2001 From: steven Date: Mon, 6 Sep 2021 17:35:03 +0200 Subject: [PATCH] jenkins update --- __test__/index.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); }); });