test: create initial unit tests

This commit is contained in:
Julian Tölle 2021-06-20 00:49:17 +02:00
parent be7fb7d13a
commit e476243b85
16 changed files with 1177 additions and 18 deletions

View file

@ -15,10 +15,6 @@ describe("AppController (e2e)", () => {
await app.init();
});
it("/ (GET)", () => {
return request(app.getHttpServer())
.get("/")
.expect(200)
.expect("Hello World!");
});
it("/ (GET)", () =>
request(app.getHttpServer()).get("/").expect(200).expect("Hello World!"));
});