mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 16:17:37 +00:00
this seems a bit crude but allows running the tests and having them take care of setting up the port to use
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import * as supertest from "supertest";
|
|
const app = require("../src/app");
|
|
const request = supertest(app);
|
|
|
|
describe("GET /random-url", () => {
|
|
it("should return 404", () => {
|
|
return request.get("/reset")
|
|
.expect(404);
|
|
});
|
|
});
|