Files
AppFlowy-Web/cypress/support/commands.ts
2025-08-15 10:38:15 +08:00

23 lines
548 B
TypeScript

/// <reference types="cypress" />
// Import auth utilities
import './auth-utils';
// Import page utilities
import './page-utils';
// ***********************************************
// 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 {};