make yarn test only runs unit tests for now while we sortout CI setup

This commit is contained in:
gnuxie 2021-09-27 12:38:43 +01:00
parent ea6bfd24cb
commit c29cfe370a

View File

@ -11,7 +11,7 @@
"build": "tsc",
"lint": "tslint --project ./tsconfig.json -t stylish",
"start:dev": "yarn build && node lib/index.js",
"test": "ts-mocha --project ./tsconfig.json test/**/*.ts",
"test": "ts-mocha --project ./tsconfig.json test/commands/**/*.ts",
"test:integration": "NODE_ENV=harness ts-mocha --require test/integration/fixtures.ts --project ./tsconfig.json test/integration/**/*Test.ts",
"test:manual": "NODE_ENV=harness ts-node test/integration/manualLaunchScript.ts"
},