Commit 21ef2fb 1 parent f8a8232 commit 21ef2fb Copy full SHA for 21ef2fb
File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 57
57
uses : HSLdevcom/jore4-tools/github-actions/run-cypress-tests@run-cypress-tests-v1
58
58
with :
59
59
test-tags : ' '
60
+ video : ' false'
60
61
threads : ' 3'
Original file line number Diff line number Diff line change
1
+ import { defineConfig } from 'cypress' ;
2
+ import config from './cypress.config' ;
3
+
4
+ // eslint-disable-next-line import/no-default-export
5
+ export default defineConfig ( {
6
+ e2e : {
7
+ ...config . e2e ,
8
+ video : true ,
9
+ // Bigger video files but faster runs because compression is skipped
10
+ videoCompression : false ,
11
+ } ,
12
+ } ) ;
Original file line number Diff line number Diff line change 8
8
"ts:check" : " yarn tsc --noEmit" ,
9
9
"ts:build" : " yarn tsc --build" ,
10
10
"qa" : " yarn --frozen-lockfile && yarn ts:check && yarn prettier:check" ,
11
- "cy:run" : " CYPRESS_BASE_URL=${CYPRESS_BASE_URL:-http://localhost:3300} cypress run --browser chrome"
11
+ "cy:run" : " CYPRESS_BASE_URL=${CYPRESS_BASE_URL:-http://localhost:3300} cypress run --browser chrome" ,
12
+ "cy:run:video" : " CYPRESS_BASE_URL=${CYPRESS_BASE_URL:-http://localhost:3300} cypress run --browser chrome --config-file ./cypress.config.video.ts"
12
13
},
13
14
"dependencies" : {
14
15
"@4tw/cypress-drag-drop" : " ^2.2.3" ,
You can’t perform that action at this time.
0 commit comments