Remove old cypress test (#18629)

This commit is contained in:
Fernando Valverde 2022-10-25 14:55:18 -06:00 committed by GitHub
parent d66dbe5e72
commit d7b5365e6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,22 +51,6 @@ describe('Adjust post tags', () => {
cy.findByRole('link', { name: /# tag1/ }).should('not.exist');
});
});
it('should not alter tags from a post if a reason is not specified', () => {
cy.findByRole('heading', { name: 'Tag test article' }).click();
cy.getIframeBody('.article-iframe').findByRole('link', {
name: /# tag1/,
});
cy.getIframeBody('.actions-panel-iframe').within(() => {
cy.findByRole('button', { name: 'Open adjust tags section' }).click();
cy.findByRole('button', { name: '#tag1 Remove tag' }).click();
cy.findByRole('button', { name: 'Submit' }).click();
});
cy.findByTestId('snackbar').should('not.exist');
});
});
describe('from /mod/tagname page', () => {