From 4d9a2c4a295841b5ab472d02e1ffd68e01d72686 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 20 Aug 2014 11:48:01 -0700 Subject: [PATCH] Make `npm run-script jest` available This is slightly shorter than typing `./node_modules/.bin/jest`. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8141c4dacf..11c377087b 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,8 @@ "version": 4 }, "scripts": { - "test": "./node_modules/.bin/grunt test" + "test": "./node_modules/.bin/grunt test", + "jest": "jest" }, "jest": { "rootDir": "src",