refactor(cypress): remove plugins file
Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/1795>
This commit is contained in:
parent
ddb57ec1ce
commit
f870d595fe
|
@ -3,11 +3,10 @@ import { defineConfig } from 'cypress'
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
chromeWebSecurity: false,
|
chromeWebSecurity: false,
|
||||||
e2e: {
|
e2e: {
|
||||||
// We've imported your old cypress plugins here.
|
// NOTE: Set up plugins
|
||||||
// You may want to clean this up later by importing these.
|
// setupNodeEvents (on, config) {
|
||||||
setupNodeEvents(on, config) {
|
//
|
||||||
return require('./cypress/plugins/index.js')(on, config)
|
// },
|
||||||
},
|
baseUrl: 'https://demo.funkwhale.audio'
|
||||||
baseUrl: 'https://demo.funkwhale.audio',
|
}
|
||||||
},
|
|
||||||
})
|
})
|
||||||
|
|
|
@ -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
|
|
||||||
}
|
|
Loading…
Reference in New Issue