Skip to content

Commit 1a70085

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

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

.circleci/config.yml

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

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+
832847
- run:
833848
name: Run tests
834849
environment:
@@ -900,6 +915,21 @@ jobs:
900915
background: true
901916
command: npm start
902917

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+
903933
- run:
904934
name: Run tests
905935
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)