Add more integration tests for tokens

This commit is contained in:
Juanfran 2025-02-10 15:19:59 +01:00
parent d79fac7729
commit 280da72e63
3 changed files with 349 additions and 12 deletions

View file

@ -260,4 +260,9 @@ export class WorkspacePage extends BaseWebSocketPage {
async clickTogglePalettesVisibility(clickOptions = {}) {
await this.togglePalettesVisibility.click(clickOptions);
}
async openTokenThemesModal(clickOptions = {}) {
await this.tokenThemesSetsSidebar.getByText("Edit").click(clickOptions);
await expect(this.tokenThemeUpdateCreateModal).toBeVisible();
}
}