mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
16 lines
501 B
TypeScript
16 lines
501 B
TypeScript
import type { IE2ETestPage } from '../types';
|
|
|
|
/**
|
|
* @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 BasePage implements IE2ETestPage {
|
|
getters = {};
|
|
|
|
actions = {};
|
|
}
|