kill-the-newsletter/src/test.ts

10 lines
226 B
TypeScript
Raw Normal View History

2020-03-18 20:21:44 +01:00
import { app } from "./server";
import request from "supertest";
test("create feed", async () => {
const response = await request(app)
.post("/")
.send({ name: "My Feed" });
JSON.stringify(response, null, 2);
});