mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 20:27:37 +00:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import * as request from "supertest";
|
|
import * as app from "../src/app";
|
|
|
|
describe("GET /random-url", () => {
|
|
it("should return 404", (done) => {
|
|
request(app).get("/reset")
|
|
.expect(404, done);
|
|
});
|
|
});
|