feat(editor): Create call to action tooltip for trying the new canvas (no-changelog) (#11230)

This commit is contained in:
Alex Grozav
2024-10-21 14:06:24 +03:00
committed by GitHub
parent 3c93ec88cd
commit ba2827e7bb
7 changed files with 113 additions and 38 deletions

View File

@@ -70,6 +70,10 @@ Cypress.Commands.add('signin', ({ email, password }) => {
})
.then((response) => {
Cypress.env('currentUserId', response.body.data.id);
cy.window().then((win) => {
win.localStorage.setItem('NodeView.switcher.discovered', 'true'); // @TODO Remove this once the switcher is removed
});
});
});
});