File tree 2 files changed +31
-3
lines changed
2 files changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -829,6 +829,20 @@ jobs:
829
829
background : true
830
830
command : npm start
831
831
832
+ - run :
833
+ name : Initialize database
834
+ working_directory : ~/pix/api
835
+ environment :
836
+ DATABASE_URL : ' postgres://circleci@localhost:5432/circleci'
837
+ command : npm run db:initialize
838
+
839
+ - run :
840
+ name : Refresh cache
841
+ environment :
842
+ JOBS : 1
843
+ working_directory : ~/pix/api
844
+ command : npm run cache:refresh
845
+
832
846
- run :
833
847
name : Run tests
834
848
environment :
@@ -900,6 +914,20 @@ jobs:
900
914
background : true
901
915
command : npm start
902
916
917
+ - run :
918
+ name : Initialize database
919
+ working_directory : ~/pix/api
920
+ environment :
921
+ DATABASE_URL : ' postgres://circleci@localhost:5432/circleci'
922
+ command : npm run db:initialize
923
+
924
+ - run :
925
+ name : Refresh cache
926
+ environment :
927
+ JOBS : 1
928
+ working_directory : ~/pix/api
929
+ command : npm run cache:refresh
930
+
903
931
- run :
904
932
name : Run tests
905
933
environment :
Original file line number Diff line number Diff line change 31
31
"start:api" : " cd ../../api && DATABASE_URL=postgresql://postgres@localhost/pix_test npm run start:watch" ,
32
32
"start:mon-pix" : " cd ../../mon-pix && npm start" ,
33
33
"start:orga" : " cd ../../orga && npm start" ,
34
- "test:ci:app" : " npm run db:initialize && npx wait-on http://localhost:3000/api http://localhost:4200 && npm run cy:run:ci:app" ,
35
- "test:ci:orga" : " npm run db:initialize && npx wait-on http://localhost:3000/api http://localhost:4201 && npm run cy:run:ci:orga"
34
+ "test:ci:app" : " npx wait-on http://localhost:3000/api http://localhost:4200 && npm run cy:run:ci:app" ,
35
+ "test:ci:orga" : " npx wait-on http://localhost:3000/api http://localhost:4201 && npm run cy:run:ci:orga"
36
36
},
37
37
"devDependencies" : {
38
38
"@badeball/cypress-cucumber-preprocessor" : " ^20.0.0" ,
49
49
"dependencies" : {
50
50
"jsonwebtoken" : " 8.5.1"
51
51
}
52
- }
52
+ }
You can’t perform that action at this time.
0 commit comments