-
Notifications
You must be signed in to change notification settings - Fork 15
/
cypress.config.mjs
83 lines (80 loc) · 2.37 KB
/
cypress.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import path from 'path'
import happoTask from 'happo-cypress/task.js'
/* eslint-disable import/no-extraneous-dependencies */
import { defineConfig } from 'cypress'
import davinciConfig from '@toptal/davinci-qa/src/configs/cypress.config.js'
/* eslint-enable */
export default defineConfig({
...davinciConfig,
component: {
...davinciConfig.component,
retries: { openMode: null, runMode: 2 },
setupNodeEvents: (on, config) => {
davinciConfig.component.setupNodeEvents(on, config)
happoTask.register(on)
return config
},
specPattern: 'cypress/component/**/*.spec.tsx',
devServer: {
framework: 'react',
bundler: 'webpack',
webpackConfig: {
module: {
rules: [
{
test: /\.jsx|\.tsx|\.mjs|\.ts?$/,
resolve: {
fullySpecified: false, // disable the behaviour
},
use: [
{
loader: 'babel-loader',
options: {
presets: [
'@babel/preset-typescript',
'@babel/preset-react',
],
plugins: [
'@babel/plugin-proposal-nullish-coalescing-operator',
'@babel/plugin-proposal-optional-chaining',
'istanbul',
],
},
},
],
},
{
test: /\.(js)$/,
type: "javascript/auto",
resolve: {
fullySpecified: false,
},
},
{
test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
loader: 'url-loader',
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader', {
loader: 'postcss-loader',
options: {
postcssOptions: {
config: false,
plugins: {
tailwindcss: {
config: './tailwind.config.js',
},
autoprefixer: {},
},
},
},
}],
},
],
},
resolve: davinciConfig.component.devServer.webpackConfig.resolve,
},
},
},
})