From f5ab0856e48078260f1f92a7ef14e8e1ab8baf0f Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Thu, 9 Jul 2020 18:17:13 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Alberto Gimeno --- __tests__/search.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/__tests__/search.test.ts b/__tests__/search.test.ts index feb2e13..284eff0 100644 --- a/__tests__/search.test.ts +++ b/__tests__/search.test.ts @@ -298,7 +298,6 @@ describe('Search', () => { expect(searchResult.filesToUpload.length).toEqual(7) expect(searchResult.filesToUpload.includes(searchItem1Path)).toEqual(true) expect(searchResult.filesToUpload.includes(searchItem2Path)).toEqual(true) - expect(searchResult.filesToUpload.includes(searchItem2Path)).toEqual(true) expect(searchResult.filesToUpload.includes(searchItem4Path)).toEqual(true) expect(searchResult.filesToUpload.includes(extraSearchItem1Path)).toEqual( true @@ -324,7 +323,6 @@ describe('Search', () => { expect(searchResult.filesToUpload.length).toEqual(5) expect(searchResult.filesToUpload.includes(searchItem1Path)).toEqual(true) expect(searchResult.filesToUpload.includes(searchItem2Path)).toEqual(true) - expect(searchResult.filesToUpload.includes(searchItem2Path)).toEqual(true) expect(searchResult.filesToUpload.includes(searchItem4Path)).toEqual(true) expect(searchResult.filesToUpload.includes(extraSearchItem2Path)).toEqual( true @@ -336,7 +334,7 @@ describe('Search', () => { const searchPath2 = path.join(root, 'folder-h', 'folder-j', 'folder-k') const searchPath3 = amazingFileInFolderHPath - const searchPaths = searchPath1 + '\n' + searchPath2 + '\n' + searchPath3 + const searchPaths = [searchPath1, searchPath2, searchPath3].join('\n') const searchResult = await findFilesToUpload(searchPaths) expect(searchResult.rootDirectory).toEqual(path.join(root, 'folder-h'))