refactor(cypress): remove plugins file

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/1795>
This commit is contained in:
Kasper Seweryn 2023-06-19 22:59:40 +02:00
commit f870d595fe
2 changed files with 6 additions and 28 deletions

View file

@ -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'
}
})