mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 16:17:37 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import * as supertest from "supertest";
|
|
const request = supertest("http://localhost:8000");
|
|
|
|
describe("GET /", () => {
|
|
it("should return 200 OK", (done) => {
|
|
request.get("/")
|
|
.expect(200, done);
|
|
});
|
|
}); |