forked from vue-styleguidist/vue-styleguidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.config.ts
62 lines (58 loc) · 1.2 KB
/
cypress.config.ts
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
import { defineConfig } from 'cypress'
const webpackConfig = {
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
alias: {
'rsg-components': 'react-styleguidist/lib/client/rsg-components'
}
},
module: {
rules: [
{
test: /\.mjs$/,
type: 'javascript/auto',
},
{
test: /\.(tsx|ts|js|jsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/env',
{
modules: 'commonjs'
}
],
'@babel/typescript',
'@babel/react'
]
}
}
}
]
},
devtool: 'source-map'
}
export default defineConfig({
fixturesFolder: false,
screenshotsFolder: 'test/cypress/screenshots',
videosFolder: 'test/cypress/videos',
video: false,
e2e: {
baseUrl: 'http://localhost:6060',
specPattern: 'test/cypress/integration/**/*.cy.{js,jsx,ts,tsx}',
supportFile: false
},
component: {
specPattern: 'packages/vue-styleguidist/src/client/**/*.cy.{js,jsx,ts,tsx}',
supportFile: 'test/cypress/support/component.tsx',
indexHtmlFile: 'test/cypress/support/component-index.html',
devServer: {
framework: 'react',
bundler: 'webpack',
webpackConfig
}
}
})