Files
AppFlowy-Web/cypress/support/commands.ts
2025-08-17 16:29:44 +08:00

29 lines
768 B
TypeScript

/// <reference types="cypress" />
// Import auth utilities
import './auth-utils';
// Import page utilities
import './page-utils';
// Import console logger v2 (improved version)
import './console-logger';
// Import WebSocket mock utilities
import './websocket-mock';
// Import WebSocket collab mock for document sync
import './websocket-collab-mock';
// ***********************************************
// This example commands.ts shows you how to
// create various custom commands and overwrite
// existing commands.
//
// For more comprehensive examples of custom
// commands please read more here:
// https://on.cypress.io/custom-commands
// ***********************************************
Cypress.Commands.add('mockAPI', () => {
// Mock the API
});
export {};