Merge pull request #9485 from OSA413/patch-1

fix: prevent handle leak in default e2e test
This commit is contained in:
Kamil Mysliwiec
2022-04-22 08:59:58 +02:00
committed by GitHub

View File

@@ -21,4 +21,6 @@ describe('AppController (e2e)', () => {
.expect(200)
.expect('Hello World!');
});
afterEach(() => app.close());
});