Browse Source

fix image & pwd

main
Galimede 6 years ago
parent
commit
b0182eb06e
  1. 5
      .circleci/config.yml

5
.circleci/config.yml

@ -30,11 +30,12 @@ jobs:
- run : yarn test:ci
test_e2e:
docker:
- image: cimg/node:14.10.1
- image: circleci/postgres
environment:
POSTGRES_USER: e2e
POSTGRES_DB: psdb
- image: cimg/node:14.10.1
POSTGRES_PASSWORD: test
steps:
- checkout
- restore_cache:
@ -46,7 +47,7 @@ jobs:
name: Launching e2e test
command: yarn test:e2e
environment:
DATABASE_URL: "postgres://e2e@localhost:5432/psdb"
DATABASE_URL: "postgres://e2e:test@localhost:5432/psdb"
API_PORT: 3000
API_HOST: localhost
API_PROTOCOL: http

Loading…
Cancel
Save