From 087ea1f06824491663df5dc7bc4a44a4b5352d24 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Mon, 13 Nov 2017 18:11:31 -0500 Subject: Standardize around a `test:circleci` command that any sub-package can implement in order to have their tests run on CircleCi --- packages/assert/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'packages/assert') diff --git a/packages/assert/package.json b/packages/assert/package.json index ab640b361..289bc5431 100644 --- a/packages/assert/package.json +++ b/packages/assert/package.json @@ -11,7 +11,8 @@ "lint": "tslint src/**/*.ts test/**/*.ts", "run_mocha": "mocha lib/test/**/*_test.js", "prepublishOnly": "run-p build", - "test": "run-s clean build run_mocha" + "test": "run-s clean build run_mocha", + "test:circleci": "yarn test" }, "license": "Apache-2.0", "repository": { -- cgit