1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00
Files
TypeScript-Node-Starter/test/user.test.ts
Daniel Temme 4eb0962a7b separate server binding to port from other app config
this seems a bit crude but allows running the tests and having them take
care of setting up the port to use
2017-08-19 16:12:45 +02:00

19 lines
396 B
TypeScript

import {} from "jest";
import * as supertest from "supertest";
const app = require("../src/app");
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);
});
});