From 4e08b77b61293306c53ea85286d3b6eba1b08253 Mon Sep 17 00:00:00 2001 From: souvik Date: Mon, 11 Mar 2024 11:41:42 +0530 Subject: [PATCH] chore:lint fix --- test/integration/bundle/bundle.test.ts | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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(); + }); +});