Skip to content

Commit 81bc0d7

Browse files
laura-bergoensnlepage
authored andcommitted
fix(e2e): inserts learning content in database before running e2e
1 parent 2deb874 commit 81bc0d7

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

.circleci/config.yml

+28
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,20 @@ jobs:
829829
background: true
830830
command: npm start
831831

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+
832846
- run:
833847
name: Run tests
834848
environment:
@@ -900,6 +914,20 @@ jobs:
900914
background: true
901915
command: npm start
902916

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+
903931
- run:
904932
name: Run tests
905933
environment:

high-level-tests/e2e/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"start:api": "cd ../../api && DATABASE_URL=postgresql://postgres@localhost/pix_test npm run start:watch",
3232
"start:mon-pix": "cd ../../mon-pix && npm start",
3333
"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"
3636
},
3737
"devDependencies": {
3838
"@badeball/cypress-cucumber-preprocessor": "^20.0.0",
@@ -49,4 +49,4 @@
4949
"dependencies": {
5050
"jsonwebtoken": "8.5.1"
5151
}
52-
}
52+
}

0 commit comments

Comments
 (0)