Skip to content

Commit

Permalink
fix(core): add proper test scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
  • Loading branch information
neilime committed Mar 29, 2024
1 parent 99cffbd commit d08a41b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const up: MigrationUpFunction = async (absoluteProjectDir: string): Promi
jest: "jest --detectOpenHandles --forceExit",
test: `${packageManager} run jest --maxWorkers=50%`,
"test:watch": `${packageManager} run jest --watch --maxWorkers=25%`,
"test:cov": `${packageManager} run jest --coverage`,
"test:cov": `${packageManager} run test --coverage`,
"test:ci": `${packageManager} run test:cov --runInBand`,
prepare: `${PROJECT_NAME} install`,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ exports[`Migration 20201024173398-init Up should apply migration 1`] = `
"prepare": "ts-dev-tools install",
"test": "npm run jest --maxWorkers=50%",
"test:ci": "npm run test:cov --runInBand",
"test:cov": "npm run jest --coverage",
"test:cov": "npm run test --coverage",
"test:watch": "npm run jest --watch --maxWorkers=25%",
},
"version": "1.0.0",
Expand Down

0 comments on commit d08a41b

Please sign in to comment.