mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-11-30 11:27:55 +08:00
29 lines
768 B
TypeScript
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 {};
|