Skip to content

Commit 525c3c9

Browse files
committed
rename test:integration script name
1 parent 8bb8e96 commit 525c3c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"debug": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec node --inspect -r ts-node/register ./src/server.ts",
99
"start": "NODE_ENV=production ts-node -T src/server.ts",
1010
"test": "nyc mocha",
11-
"integration-test": "nyc mocha --config .mocharc.integration.json"
11+
"test:integration": "nyc mocha --config .mocharc.integration.json"
1212
},
1313
"repository": {
1414
"type": "git",

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"build:validation": "pnpm nx build @overture-stack/lectern-validation",
1010
"build:server": "pnpm nx build @overture-stack/lectern-server",
1111
"build:client": "pnpm nx build @overture-stack/lectern-client",
12-
"test:all": "pnpm nx run-many --all --target=test,integration-test",
12+
"test:all": "pnpm nx run-many --all --target=test,test:integration",
1313
"test:unit:all": "pnpm nx run-many --all --target=test",
1414
"test:unit:dictionary": "pnpm nx test @overture-stack/lectern-dictionary",
1515
"test:unit:validation": "pnpm nx test @overture-stack/lectern-validation",
1616
"test:unit:server": "pnpm nx test @overture-stack/lectern-server",
1717
"test:unit:client": "pnpm nx test @overture-stack/lectern-client",
18-
"test:integration:server": "pnpm nx integration-test @overture-stack/lectern-server",
18+
"test:integration:server": "pnpm nx test:integration @overture-stack/lectern-server",
1919
"generate": "pnpm build:dictionary && pnpm -C scripts generate"
2020
},
2121
"keywords": [],

0 commit comments

Comments
 (0)