fix(editor): Don't try to load credentials on the demo route (#9926)

This commit is contained in:
Danny Martini
2024-07-03 15:14:26 +02:00
committed by GitHub
parent 7f8857f69b
commit b80df2a47e
3 changed files with 21 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
* Actions
*/
export function vistDemoPage(theme?: 'dark' | 'light') {
export function visitDemoPage(theme?: 'dark' | 'light') {
const query = theme ? `?theme=${theme}` : '';
cy.visit('/workflows/demo' + query);
cy.waitForLoad();