diff --git a/test/integration/bundle/bundle.test.ts b/test/integration/bundle/bundle.test.ts index f168c4c3a63..0cc20e7cb31 100644 --- a/test/integration/bundle/bundle.test.ts +++ b/test/integration/bundle/bundle.test.ts @@ -83,7 +83,6 @@ describe('bundle', () => { fileCleanup('./test/integration/bundle/final.yaml'); done(); }); - }); describe('bundle spec v3', () => { @@ -93,8 +92,8 @@ describe('bundle spec v3', () => { 'bundle', './test/integration/bundle/first-asyncapiv3.yaml', '--output=test/integration/bundle/final.yaml', ]).it('should be able to bundle v3 spec correctly', (ctx, done) => { - expect(ctx.stdout).to.contain('Check out your shiny new bundled files at test/integration/bundle/final.yaml\n') - fileCleanup('./test/integration/bundle/final.yaml') - done() - }) -}) \ No newline at end of file + expect(ctx.stdout).to.contain('Check out your shiny new bundled files at test/integration/bundle/final.yaml\n'); + fileCleanup('./test/integration/bundle/final.yaml'); + done(); + }); +});