Browse Source

jenkins update

master
Steven Kuterna 3 years ago
parent
commit
a7ebfe2b02
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      __test__/index.test.js

+ 2
- 2
__test__/index.test.js View File

@ -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");
});
});


Loading…
Cancel
Save