Skip to content

Commit

Permalink
test: fix test script path
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Feb 28, 2022
1 parent e35170f commit d27a87f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test:sqlite": "cross-env DB=sqlite FORCE_COLOR=true node japaFile.js",
"test:mysql": "cross-env DB=mysql FORCE_COLOR=true node japaFile.js",
"test:mysql_legacy": "cross-env DB=mysql_legacy FORCE_COLOR=true node japaFile.js",
"test:mssql": "cross-env DB=mssql FORCE_COLOR=true node japaFile.js",
"test:pg": "cross-env DB=pg FORCE_COLOR=true node japaFile.js",
"test:sqlite": "cross-env DB=sqlite FORCE_COLOR=true node ./.bin/test.js",
"test:mysql": "cross-env DB=mysql FORCE_COLOR=true node ./.bin/test.js",
"test:mysql_legacy": "cross-env DB=mysql_legacy FORCE_COLOR=true node ./.bin/test.js",
"test:mssql": "cross-env DB=mssql FORCE_COLOR=true node ./.bin/test.js",
"test:pg": "cross-env DB=pg FORCE_COLOR=true node ./.bin/test.js",
"test:docker": "npm run test:sqlite && npm run test:mysql && npm run test:mysql_legacy && npm run test:pg && npm run test:mssql",
"test": "docker-compose -f docker-compose.yml -f docker-compose-test.yml build && docker-compose -f docker-compose.yml -f docker-compose-test.yml run --rm test",
"lint": "eslint . --ext=.ts",
Expand Down

0 comments on commit d27a87f

Please sign in to comment.