From eabc160f16afea1de3157bcd8969238c29ded66b Mon Sep 17 00:00:00 2001 From: Chris Pearce Date: Sat, 7 May 2016 02:08:07 +0100 Subject: [PATCH] feat(ng2 blueprint): add test script entry to package.json Add a test script (that executes ng test) to the scripts contained in the package.json blueprint --- addon/ng2/blueprints/ng2/files/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/addon/ng2/blueprints/ng2/files/package.json b/addon/ng2/blueprints/ng2/files/package.json index 40c86f571a1e..69a3eb64c46c 100644 --- a/addon/ng2/blueprints/ng2/files/package.json +++ b/addon/ng2/blueprints/ng2/files/package.json @@ -8,6 +8,7 @@ "postinstall": "typings install", "lint": "tslint \"src/**/*.ts\"", "format": "clang-format -i -style=file --glob=src/**/*.ts", + "test": "ng test", "pree2e": "webdriver-manager update", "e2e": "protractor" },