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
Bowden Kelly 6625b87b19 initial commit
2017-05-09 13:28:09 -07:00

9 lines
216 B
TypeScript

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