Merge pull request #268 from chrisssthomas/patch-1
close app handle in base e2e test
This commit is contained in:
commit
196f023daa
|
|
@ -15,6 +15,10 @@ describe('AppController (e2e)', () => {
|
|||
await app.init();
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await app.close();
|
||||
});
|
||||
|
||||
it('/ (GET)', () => {
|
||||
return request(app.getHttpServer())
|
||||
.get('/')
|
||||
|
|
|
|||
Loading…
Reference in New Issue