mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-11-30 03:18:02 +08:00
25 lines
622 B
TypeScript
25 lines
622 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';
|
|
|
|
// ***********************************************
|
|
// 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 {};
|