1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 20:27:37 +00:00
Files
TypeScript-Node-Starter/test/home.test.ts
2017-08-09 13:27:36 +02:00

11 lines
237 B
TypeScript

import {} from "jest";
import * as supertest from "supertest";
const request = supertest("http://localhost:3000");
describe("GET /", () => {
it("should return 200 OK", () => {
return request.get("/")
.expect(200);
});
});