1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 20:27:37 +00:00

initial commit

This commit is contained in:
Bowden Kelly
2017-05-09 13:28:09 -07:00
parent 352392a682
commit 6625b87b19
171 changed files with 21929 additions and 246 deletions

16
test/user.test.ts Normal file
View File

@@ -0,0 +1,16 @@
import * as supertest from "supertest";
const request = supertest("http://localhost:8000");
describe("GET /login", () => {
it("should return 200 OK", (done) => {
request.get("/login")
.expect(200, done);
});
});
describe("GET /signup", () => {
it("should return 200 OK", (done) => {
request.get("/signup")
.expect(200, done);
});
});