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

fix: fix lint warnings for test files

This commit is contained in:
kevguy
2017-07-23 16:51:57 +08:00
parent 2570c56c69
commit 82d9b2952c
5 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
import {} from 'jest';
import * as supertest from "supertest";
const request = supertest("http://localhost:8000");
@@ -13,4 +14,4 @@ describe("GET /signup", () => {
request.get("/signup")
.expect(200, done);
});
});
});