You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

14 lines
345 B

const request = require("supertest");
const app = require("../index");
describe("Get route", () => {
it("page should return hello world", async () => {
const res = await request(app).get("/");
expect(res.statusCode).toEqual(200);
expect(res.body).toEqual("Hello world");
});
});
afterAll(async () => {
await app.close();
});