1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 23:49:11 +00:00
Files
TypeScript-Node-Starter/test/app.test.ts
2017-12-14 11:33:28 -08:00

10 lines
226 B
TypeScript

import * as supertest from "supertest";
const request = supertest("http://localhost:3000");
describe("GET /random-url", () => {
it("should return 404", () => {
return request.get("/reset")
.expect(404);
});
});