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

10 lines
206 B
TypeScript

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