From c29cfe370aae340493ebd8f2dbceee0801ad70f6 Mon Sep 17 00:00:00 2001 From: gnuxie Date: Mon, 27 Sep 2021 12:38:43 +0100 Subject: [PATCH] make yarn test only runs unit tests for now while we sortout CI setup --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index be1cc03..c50b08f 100644 --- a/package.json +++ b/package.json @@ -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" },