mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 23:07:20 +00:00
10 lines
229 B
TypeScript
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);
|
|
});
|
|
});
|