From 2b040e876337dd8a1bc98ae8019dd46bd792db01 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Mon, 4 Jan 2021 11:51:19 -0800 Subject: [PATCH] Unskip tests Fix #113761 --- .../test/electron-browser/api/extHostSearch.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/test/electron-browser/api/extHostSearch.test.ts b/src/vs/workbench/test/electron-browser/api/extHostSearch.test.ts index ff6d95047f9..0f2b63541b1 100644 --- a/src/vs/workbench/test/electron-browser/api/extHostSearch.test.ts +++ b/src/vs/workbench/test/electron-browser/api/extHostSearch.test.ts @@ -461,7 +461,7 @@ suite('ExtHostSearch', () => { ]); }); - test.skip('max results = 1', async () => { + test('max results = 1', async () => { const reportedResults = [ joinPath(rootFolderA, 'file1.ts'), joinPath(rootFolderA, 'file2.ts'), @@ -497,7 +497,7 @@ suite('ExtHostSearch', () => { assert(wasCanceled, 'Expected to be canceled when hitting limit'); }); - test.skip('max results = 2', async () => { + test('max results = 2', async () => { const reportedResults = [ joinPath(rootFolderA, 'file1.ts'), joinPath(rootFolderA, 'file2.ts'), @@ -533,7 +533,7 @@ suite('ExtHostSearch', () => { assert(wasCanceled, 'Expected to be canceled when hitting limit'); }); - test.skip('provider returns maxResults exactly', async () => { + test('provider returns maxResults exactly', async () => { const reportedResults = [ joinPath(rootFolderA, 'file1.ts'), joinPath(rootFolderA, 'file2.ts'),