Unskip tests

Fix #113761
This commit is contained in:
Rob Lourens
2021-01-04 11:51:19 -08:00
parent fee7cdacf7
commit 2b040e8763

View File

@@ -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'),