mirror of
https://github.com/janishutz/color-thief.git
synced 2025-11-25 05:44:24 +00:00
16 lines
477 B
JavaScript
16 lines
477 B
JavaScript
/* eslint-disable no-undef */
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const { defineConfig } = require( 'cypress' );
|
|
|
|
module.exports = defineConfig( {
|
|
'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.cjs' )( on, config );
|
|
},
|
|
|
|
'experimentalRunAllSpecs': true,
|
|
},
|
|
} );
|