From 251901fee72a12e85d1a3215ef69851cc720c634 Mon Sep 17 00:00:00 2001 From: Benjin Dubishar Date: Thu, 20 Jan 2022 09:29:53 -0800 Subject: [PATCH] Disabling failing test pending investigation (#18130) --- .../sql-database-projects/src/test/autorestHelper.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/sql-database-projects/src/test/autorestHelper.test.ts b/extensions/sql-database-projects/src/test/autorestHelper.test.ts index 4d9b54b86a..1d090591fe 100644 --- a/extensions/sql-database-projects/src/test/autorestHelper.test.ts +++ b/extensions/sql-database-projects/src/test/autorestHelper.test.ts @@ -33,7 +33,7 @@ describe('Autorest tests', function (): void { should(executable === 'autorest' || executable === 'npx autorest').equal(true, 'autorest command should be found in default path during unit tests'); }); - it('Should run an autorest command successfully', async function (): Promise { + it.skip('Should run an autorest command successfully', async function (): Promise { sinon.stub(window, 'showInformationMessage').returns(Promise.resolve(runViaNpx)); // stub a selection in case test runner doesn't have autorest installed const autorestHelper = new AutorestHelper(testContext.outputChannel);