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/contact.test.ts
2017-07-23 16:51:57 +08:00

11 lines
254 B
TypeScript

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