1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 23:07:20 +00:00
Files
TypeScript-Node-Starter/test/app.test.ts
Bowden Kelly 6625b87b19 initial commit
2017-05-09 13:28:09 -07:00

10 lines
229 B
TypeScript

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