1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00
Files
TypeScript-Node-Starter/test/home.test.ts
2017-12-14 15:27:52 -08:00

10 lines
203 B
TypeScript

import * as request from "supertest";
import * as app from "../src/app";
describe("GET /", () => {
it("should return 200 OK", (done) => {
request(app).get("/")
.expect(200, done);
});
});