mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-09 08:08:16 +00:00
10 lines
206 B
TypeScript
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);
|
|
});
|
|
});
|