File tree 2 files changed +33
-3
lines changed
2 files changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -829,6 +829,21 @@ jobs:
829
829
background : true
830
830
command : npm start
831
831
832
+ - run :
833
+ name : Prepare database
834
+ working_directory : ~/pix/api
835
+ environment :
836
+ DATABASE_URL : ' postgres://circleci@localhost:5432/circleci'
837
+ command : npm run db:prepare
838
+
839
+ - run :
840
+ name : Refresh cache
841
+ environment :
842
+ JOBS : 1
843
+ DATABASE_URL : ' postgres://circleci@localhost:5432/circleci'
844
+ working_directory : ~/pix/api
845
+ command : npm run cache:refresh
846
+
832
847
- run :
833
848
name : Run tests
834
849
environment :
@@ -900,6 +915,21 @@ jobs:
900
915
background : true
901
916
command : npm start
902
917
918
+ - run :
919
+ name : Prepare database
920
+ working_directory : ~/pix/api
921
+ environment :
922
+ DATABASE_URL : ' postgres://circleci@localhost:5432/circleci'
923
+ command : npm run db:prepare
924
+
925
+ - run :
926
+ name : Refresh cache
927
+ environment :
928
+ JOBS : 1
929
+ DATABASE_URL : ' postgres://circleci@localhost:5432/circleci'
930
+ working_directory : ~/pix/api
931
+ command : npm run cache:refresh
932
+
903
933
- run :
904
934
name : Run tests
905
935
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