Skip to content

Commit

Permalink
Checking copy/paste of a skeleton point (#8118)
Browse files Browse the repository at this point in the history
  • Loading branch information
novda committed Jul 8, 2024
1 parent e76ccf8 commit 609534e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/cypress/e2e/features/skeletons_pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,5 +223,18 @@ context('Manipulations with skeletons', { scrollBehavior: false }, () => {

cy.removeAnnotations();
});

it('Copy/paste a skeleton shape', () => {
createSkeletonObject('shape');
cy.get('#cvat_canvas_shape_2').click();
cy.get('#cvat_canvas_shape_2').trigger('mouseover');
cy.get('body').type('{ctrl}c');
cy.get('body').type('{ctrl}v');
cy.get('.cvat-canvas-container').click();

cy.get('#cvat_canvas_shape_7').should('exist').and('be.visible');

cy.removeAnnotations();
});
});
});

0 comments on commit 609534e

Please sign in to comment.