import { defineConfig } from 'cypress';
import webpackConfig from './webpack.test.config'

export default defineConfig({
    video: false,
    component: {
        specPattern: 'src/**/*spec.{js,jsx,ts,tsx}',
        devServer: {
            framework: 'react',
            bundler: 'webpack',
            webpackConfig: webpackConfig,
        },
    },
});
