File tree 5 files changed +16
-7
lines changed
5 files changed +16
-7
lines changed Original file line number Diff line number Diff line change
1
+ import { defineConfig } from 'cypress' ;
2
+
3
+ export default defineConfig ( {
4
+ e2e : {
5
+ // We've imported your old cypress plugins here.
6
+ // You may want to clean this up later by importing these.
7
+ setupNodeEvents ( on , config ) {
8
+ return require ( './cypress/plugins/index.js' ) ( on , config ) ;
9
+ } ,
10
+ taskTimeout : 60000 ,
11
+ requestTimeout : 60000 ,
12
+ execTimeout : 60000 ,
13
+ } ,
14
+ } ) ;
Load Diff This file was deleted.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
"url" : " git+https://github.com/pharindoko/json-serverless.git"
10
10
},
11
11
"scripts" : {
12
- "test" : " npx jest" ,
12
+ "test" : " npx jest --runInBand " ,
13
13
"debug" : " tsc-watch --onSuccess \" node --inspect-brk ./lib/example/simple.s3.js\" " ,
14
14
"start" : " tsc-watch --onSuccess \" node ./lib/example/simple.s3.js\" " ,
15
15
"start:dynamodb" : " tsc-watch --onSuccess \" node ./lib/example/simple.dynamodb.js\" " ,
20
20
"build" : " tsc -b" ,
21
21
"prepare" : " npm run compile" ,
22
22
"pretest" : " npm run compile" ,
23
- "posttest" : " npm run check" ,
24
- "check" : " gts check" ,
25
- "clean" : " gts clean" ,
26
23
"compile" : " tsc -p ." ,
27
- "fix " : " gts fix "
24
+ "cypress:open " : " cypress open "
28
25
},
29
26
"author" : " " ,
30
27
"license" : " MIT" ,
74
71
"eslint" : " 8.47.0" ,
75
72
"eslint-config-airbnb-base" : " 15.0.0" ,
76
73
"eslint-plugin-import" : " 2.28.0" ,
77
- "gts" : " 5.0.0" ,
78
74
"jest" : " 29.6.2" ,
79
75
"source-map-support" : " 0.5.21" ,
80
76
"supertest" : " 6.3.3" ,
You can’t perform that action at this time.
0 commit comments