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

13 lines
244 B
TypeScript

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