test(editor): Add deprecation warnings for e2e page classes (no-changelog) (#12489)

This commit is contained in:
oleg
2025-01-08 09:36:44 +01:00
committed by GitHub
parent 491cb605e3
commit 803960e092
32 changed files with 200 additions and 57 deletions

View File

@@ -1,5 +1,13 @@
import { BasePage } from './base';
/**
* @deprecated Use functional composables from @composables instead.
* If a composable doesn't exist for your use case, please create a new one in:
* cypress/composables
*
* This class-based approach is being phased out in favor of more modular functional composables.
* Each getter and action in this class should be moved to individual composable functions.
*/
export class WorkflowsPage extends BasePage {
url = '/home/workflows';