diff --git a/tests/cypress/e2e/actions_tasks3/case_115_use_custom_storage_for_import_export_annotations.js b/tests/cypress/e2e/actions_tasks3/case_115_use_custom_storage_for_import_export_annotations.js index e0e8b14a596..353e4f27526 100644 --- a/tests/cypress/e2e/actions_tasks3/case_115_use_custom_storage_for_import_export_annotations.js +++ b/tests/cypress/e2e/actions_tasks3/case_115_use_custom_storage_for_import_export_annotations.js @@ -126,6 +126,21 @@ context('Import and export annotations: specify source and target storage in mod }; cy.exportJob(exportParams); cy.waitForFileUploadToCloudStorage(); + }); + + it('Export job annotations to custom minio bucket with folder path', () => { + const exportParams = { + type: 'annotations', + format, + archiveCustomName: 'some/folder/job_annotations', + targetStorage: { + location: 'Cloud storage', + cloudStorageId: createdCloudStorageId, + }, + useDefaultLocation: false, + }; + cy.exportJob(exportParams); + cy.waitForFileUploadToCloudStorage(); // remove annotations cy.removeAnnotations();