From e896a0d56d26fef0d34580541892467aeb4170d2 Mon Sep 17 00:00:00 2001 From: Nathan Date: Wed, 15 Jan 2025 15:27:40 -0800 Subject: [PATCH] Remote .only from suite (#930) * Prepare for release * Bump version * Fix tests and turn on --- test/index.ts | 3 ++- test/swaCliTaskProvider.test.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/index.ts b/test/index.ts index bc6a37fb3..a09f93360 100644 --- a/test/index.ts +++ b/test/index.ts @@ -17,7 +17,8 @@ export async function run(): Promise { mochaJunitReporterReporterOptions: { mochaFile: path.resolve(__dirname, '..', '..', 'test-results.xml') } - } + }, + timeout: 10000 }; addEnvVarsToMochaOptions(options); diff --git a/test/swaCliTaskProvider.test.ts b/test/swaCliTaskProvider.test.ts index 91995f518..3c6e8bbd1 100644 --- a/test/swaCliTaskProvider.test.ts +++ b/test/swaCliTaskProvider.test.ts @@ -37,7 +37,7 @@ function verifyTaskForkWorkspace(testCase: ITestCase, task: Task) { } } -suite.only('SWA task provider', async () => { +suite('SWA task provider', async () => { const taskProvider = new SwaTaskProvider();