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

feat(*): update several dependencies

This commit is contained in:
Alan Agius
2017-10-29 14:01:58 +01:00
parent e248ffdc4d
commit feac6cccf7
8 changed files with 4583 additions and 3469 deletions

View File

@@ -1,8 +1,9 @@
import {} from 'jest';
import * as supertest from "supertest";
const request = supertest("http://localhost:8000");
import * as app from "../src/server";
describe("GET /random-url", () => {
const request = supertest(app);
it("should return 404", (done) => {
request.get("/reset")
.expect(404, done);