From 5ce5e6cc0274691620367b71e9bcc40ac3b25d55 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Fri, 26 Nov 2021 11:22:38 +0100 Subject: [PATCH] tests - really skip test (#137853) --- .../contrib/testing/test/common/testResultService.test.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/vs/workbench/contrib/testing/test/common/testResultService.test.ts b/src/vs/workbench/contrib/testing/test/common/testResultService.test.ts index 49965171530..925909fe0f4 100644 --- a/src/vs/workbench/contrib/testing/test/common/testResultService.test.ts +++ b/src/vs/workbench/contrib/testing/test/common/testResultService.test.ts @@ -312,11 +312,7 @@ suite('Workbench - Test Results Service', () => { }); }); - test('resultItemParents', function () { - if (isNative && !isElectron) { - this.skip(); // TODO@connor4312 https://github.com/microsoft/vscode/issues/137853 - } - + ((isNative && !isElectron) ? test.skip /* TODO@connor4312 https://github.com/microsoft/vscode/issues/137853 */ : test)('resultItemParents', function () { assert.deepStrictEqual([...resultItemParents(r, r.getStateById(new TestId(['ctrlId', 'id-a', 'id-aa']).toString())!)], [ r.getStateById(new TestId(['ctrlId', 'id-a', 'id-aa']).toString()), r.getStateById(new TestId(['ctrlId', 'id-a']).toString()),