1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 23:49:11 +00:00
Files
TypeScript-Node-Starter/test/contact.test.ts
2017-12-14 11:33:28 -08:00

10 lines
228 B
TypeScript

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