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