Skip to content

Commit

Permalink
added removing of the restored project
Browse files Browse the repository at this point in the history
  • Loading branch information
klakhov committed Sep 12, 2024
1 parent 29b33c3 commit 8d245c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/cypress/e2e/features/requests_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ context('Requests page', () => {
});
});

it('Import backup creates a request. Project can not be opened.', () => {
it('Import backup creates a request. Project can not be opened.', () => {
cy.restoreProject(
`${backupArchiveName}.zip`,
);
Expand All @@ -303,6 +303,10 @@ context('Requests page', () => {
cy.get('.cvat-request-item-progress-success').should('exist');
cy.get('.cvat-requests-name').should('not.exist');
}, { checkResourceLink: false });

cy.goToProjectsList();
cy.openProject(projectName);
cy.deleteProjectViaActions(projectName);
});
});

Expand Down

0 comments on commit 8d245c6

Please sign in to comment.