forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drawerresize.spec.ts
24 lines (23 loc) · 1.06 KB
/
drawerresize.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
describe('Drawer Resize Demo Test', () => {
it('Navigate to the drawer demo', () => {
cy.visit('http://localhost:3000/drawer-resize-demo-nav-link');
});
it('Verify resizable drawer', () => {
cy.get('.pf-c-drawer__panel').should('have.css', 'flex-basis', 'max(0% + 24px, min(0% + 200px, 100% + 0px))');
cy.get('.pf-c-drawer__panel').should('have.class', 'pf-m-resizable');
cy.get('.pf-c-drawer').should('not.have.class', 'pf-m-expanded');
cy.get('#toggleButton').click();
cy.get('.pf-c-drawer').should('have.class', 'pf-m-expanded');
cy.get('.pf-c-drawer__panel').should('not.have.css', 'overflow-anchor', 'none');
cy.get('.pf-c-drawer__splitter')
.trigger('mousedown', { which: 1 })
.trigger('mousemove', { clientX: 300, clientY: 300 })
.trigger('mouseup', { force: true });
cy.get('.pf-c-drawer__panel').should('have.css', 'overflow-anchor', 'none');
cy.get('.pf-c-drawer__splitter')
.trigger('keydown', { key: ' ' })
.type('{downArrow}')
.type('{downArrow}')
.type('{downArrow}');
});
});