From 3537848d3db0181906f5eed97a093d69d41feaf6 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Wed, 27 Dec 2017 13:29:55 -0400 Subject: [PATCH] chore: make `test` npm script run everything we run on the CI services (#1937) The idea is that the `test` command will replace the recently introduced `concourse-test` script. `concourse-test` will become simply a call to `test` for now to ensure backwards compatibility while we update Resin Concourse. Signed-off-by: Juan Cruz Viotti --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b1eaa6cb..f23684bf 100644 --- a/package.json +++ b/package.json @@ -18,14 +18,14 @@ "url": "git@github.com:resin-io/etcher.git" }, "scripts": { - "test": "make test", + "test": "make lint test sanity-checks", "start": "electron lib/start.js", "postshrinkwrap": "node ./scripts/clean-shrinkwrap.js", "configure": "node-gyp configure", "build": "node-gyp build", "install": "node-gyp rebuild", "concourse-dependencies": "make info && make electron-develop", - "concourse-test": "make lint test sanity-checks", + "concourse-test": "npm test", "concourse-build-installers": "make installers-all" }, "author": "Resin Inc. ",