Skip to content

Commit

Permalink
ci: debug e2e test setting
Browse files Browse the repository at this point in the history
  • Loading branch information
gobeam committed Mar 19, 2022
1 parent 84d7c1c commit a73ffa8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/variables/myvars.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NODE_ENV=test
DB_TYPE=postgres
DB_HOST=127.0.0.1
DB_HOST=localhost
DB_PORT=5432
DB_DATABASE_NAME=truthy_db
DB_USERNAME=truthy_user
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"test:watch": "jest --config ./test/unit/jest-unit.json --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/e2e/jest-e2e.json --detectOpenHandles",
"test:unit": "jest --config ./test/unit/jest-unit.json --runInBand --runInBand",
"test:e2e": "jest --config ./test/e2e/jest-e2e.json --runInBand --detectOpenHandles",
"test:unit": "jest --config ./test/unit/jest-unit.json --runInBand",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/config/ormconfig.ts",
"orm-create": "npm run typeorm migration:create -- -n",
"migrate": "npm run typeorm migration:run",
Expand Down

0 comments on commit a73ffa8

Please sign in to comment.