From 177a1d43b31f5afb60ab9275a19ad7ca1611aaf6 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 5 Feb 2020 17:37:44 -0800 Subject: [PATCH] chore: add "unit", "wunit" and "funit" aliases (#859) These are faster to type on the split keyboard :-[ --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index af3d5a56d8..255a953fed 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,9 @@ "ctest": "cross-env BROWSER=chromium node test/test.js", "ftest": "cross-env BROWSER=firefox node test/test.js", "wtest": "cross-env BROWSER=webkit node test/test.js", + "unit": "npm run ctest", + "wunit": "npm run ftest", + "funit": "npm run wtest", "debug-test": "node --inspect-brk test/test.js", "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", "test": "npm run lint --silent && npm run coverage && npm run test-doclint && node utils/testrunner/test/test.js",