welcome to the world

This commit is contained in:
2021-09-07 07:10:00 +02:00
parent a7ebfe2b02
commit acfd3f5902
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ describe("Get route", () => {
it("page should return hello Mr Jenkins", async () => {
const res = await request(app).get("/");
expect(res.statusCode).toEqual(200);
expect(res.body).toEqual("Hello Mr Jenkins");
expect(res.body).toEqual("Hello Mr Jenkins, welcome to the world");
});
});