mirror of
https://github.com/n8n-io/n8n
synced 2026-04-19 13:05:54 +02:00
8 lines
213 B
TypeScript
8 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();
|
|
}
|
|
});
|
|
}
|