From f870d595fec40e7d6c986bd3deabe5efcfd8b0dd Mon Sep 17 00:00:00 2001 From: Kasper Seweryn Date: Mon, 19 Jun 2023 22:59:40 +0200 Subject: [PATCH] refactor(cypress): remove plugins file Part-of: --- front/cypress.config.ts | 13 ++++++------- front/cypress/plugins/index.ts | 21 --------------------- 2 files changed, 6 insertions(+), 28 deletions(-) delete mode 100644 front/cypress/plugins/index.ts diff --git a/front/cypress.config.ts b/front/cypress.config.ts index bfdfb20eb..f7d8c3726 100644 --- a/front/cypress.config.ts +++ b/front/cypress.config.ts @@ -3,11 +3,10 @@ import { defineConfig } from 'cypress' export default defineConfig({ chromeWebSecurity: false, e2e: { - // We've imported your old cypress plugins here. - // You may want to clean this up later by importing these. - setupNodeEvents(on, config) { - return require('./cypress/plugins/index.js')(on, config) - }, - baseUrl: 'https://demo.funkwhale.audio', - }, + // NOTE: Set up plugins + // setupNodeEvents (on, config) { + // + // }, + baseUrl: 'https://demo.funkwhale.audio' + } }) diff --git a/front/cypress/plugins/index.ts b/front/cypress/plugins/index.ts deleted file mode 100644 index 6b495580a..000000000 --- a/front/cypress/plugins/index.ts +++ /dev/null @@ -1,21 +0,0 @@ -// *********************************************************** -// This example plugins/index.js can be used to load plugins -// -// You can change the location of this file or turn off loading -// the plugins file with the 'pluginsFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/plugins-guide -// *********************************************************** - -// This function is called when a project is opened or re-opened (e.g. due to -// the project's config changing) - -/** - * @type {Cypress.PluginConfig} - */ -// eslint-disable-next-line no-unused-vars -module.exports = (on, config) => { - // `on` is used to hook into various events Cypress emits - // `config` is the resolved Cypress config -}