Skip to content

Commit

Permalink
fix: update package.json to use npm in test command
Browse files Browse the repository at this point in the history
  • Loading branch information
fibonacci998 committed Dec 8, 2023
1 parent d992121 commit 85cccab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"stop": "docker-compose stop",
"prepare": "husky install",
"jest": "NODE_OPTIONS='--loader ts-node/esm' jest",
"test": "docker compose up aurad -d && npm run jest --verbose --runInBand --forceExit && docker compose stop aurad && docker rm aurad_erascope",
"test-ci": "npm run jest --verbose --runInBand --forceExit",
"test": "docker compose up aurad -d && npm run jest -- --verbose --runInBand --forceExit && docker compose stop aurad && docker rm aurad_erascope",
"test-ci": "npm run jest -- --verbose --runInBand --forceExit",
"test-watch": "npm run jest --watch",
"test-coverage": "npm run jest --coverage",
"lint": "echo 'Running lint for repository' && eslint ."
Expand Down Expand Up @@ -128,4 +128,4 @@
"tsconfig-paths": "^4.1.1",
"typescript": "^4.8.4"
}
}
}

0 comments on commit 85cccab

Please sign in to comment.