mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 16:17:37 +00:00
19 lines
377 B
TypeScript
19 lines
377 B
TypeScript
import * as supertest from "supertest";
|
|
import * as app from "../src/server";
|
|
|
|
const request = supertest(app);
|
|
|
|
describe("GET /login", () => {
|
|
it("should return 200 OK", () => {
|
|
return request.get("/login")
|
|
.expect(200);
|
|
});
|
|
});
|
|
|
|
describe("GET /signup", () => {
|
|
it("should return 200 OK", () => {
|
|
return request.get("/signup")
|
|
.expect(200);
|
|
});
|
|
});
|