mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
7 lines
213 B
TypeScript
7 lines
213 B
TypeScript
export function expandSidebar() {
|
|
cy.get('#collapse-change-button').then(($button) => {
|
|
if ($button.find('svg[data-icon="chevron-right"]').length > 0) {
|
|
cy.get('#collapse-change-button').click();
|
|
}
|
|
});
|
|
}
|