mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
* fix: Fix inferred type of X cannot be named error after pnpm update * feat: Change page objects to expose actions and getters. Add credential creation suite
7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
import { IE2ETestPage, IE2ETestPageElement } from "../types";
|
|
|
|
export class BasePage implements IE2ETestPage {
|
|
getters: Record<string, IE2ETestPageElement> = {};
|
|
actions: Record<string, (...args: any[]) => void> = {};
|
|
}
|