mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 23:07:20 +00:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import * as request from "supertest";
|
|
import * as app from "../src/app";
|
|
|
|
describe("GET /contact", () => {
|
|
it("should return 200 OK", (done) => {
|
|
request(app).get("/contact")
|
|
.expect(200, done);
|
|
});
|
|
});
|