/// <reference types="cypress" />1// ***********************************************************2// This example plugins/index.js can be used to load plugins3//4// You can change the location of this file or turn off loading5// the plugins file with the 'pluginsFile' configuration option.6//7// You can read more here:8// https://on.cypress.io/plugins-guide9// ***********************************************************1011// This function is called when a project is opened or re-opened (e.g. due to12// the project's config changing)1314/**15* @type {Cypress.PluginConfig}16*/17// eslint-disable-next-line @typescript-eslint/no-unused-vars18module.exports = (on, config) => {19on('task', {20log (message) {21// eslint-disable-next-line no-console22console.log(message)2324return null25},26table (message) {27// eslint-disable-next-line no-console28console.table(message)2930return null31}32})33}343536