From: Lucas Di Pentima Date: Thu, 19 Jan 2023 16:03:59 +0000 (-0300) Subject: Removes the ".only()" call to one Cypress test. Refs #18834 X-Git-Tag: 2.6.0~24^2 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/81f173ecca4de9d012ad9219557c39a240ad8d2f Removes the ".only()" call to one Cypress test. Refs #18834 Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- diff --git a/src/services/collection-service/collection-service.test.ts b/src/services/collection-service/collection-service.test.ts index 817fdd54..4be17213 100644 --- a/src/services/collection-service/collection-service.test.ts +++ b/src/services/collection-service/collection-service.test.ts @@ -109,7 +109,7 @@ describe('collection-service', () => { expect(webdavClient.upload.mock.calls[0][0]).toEqual("c=zzzzz-4zz18-0123456789abcde/test-file1"); }); - it.only('should upload files with custom uplaod target', async () => { + it('should upload files with custom uplaod target', async () => { // given const files: File[] = [{name: 'test-file1'} as File]; const collectionUUID = 'zzzzz-4zz18-0123456789abcde'; @@ -165,4 +165,4 @@ describe('collection-service', () => { expect(webdavClient.delete).toHaveBeenCalledWith("c=zzzzz-tpzed-5o5tg0l9a57gxxx/root/1"); }); }); -}); \ No newline at end of file +});