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-08-09 13:27:36 +02:00

13 lines
251 B
TypeScript

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