Removes the ".only()" call to one Cypress test. Refs #18834 18834-cypress-test-fix
authorLucas Di Pentima <lucas.dipentima@curii.com>
Thu, 19 Jan 2023 16:03:59 +0000 (13:03 -0300)
committerLucas Di Pentima <lucas.dipentima@curii.com>
Thu, 19 Jan 2023 16:03:59 +0000 (13:03 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

src/services/collection-service/collection-service.test.ts

index 817fdd5453bac324948d1d8d8170c8bec2d7168f..4be17213cdeb6e161cf58d867c020e65d92ba8ca 100644 (file)
@@ -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
+});