1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/cypress/pages/base.ts
Iván Ovejero 3028ad3c61
refactor: Format root-level dirs (no-changelog) ()
🎨 Format root-level dirs
2022-12-15 16:39:59 +01:00

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> = {};
}