From fa6a5edb31be3ab08c83603c0a49ed3c5054eb65 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 5 Feb 2020 17:42:34 -0800 Subject: [PATCH] chore: fix typo in aliases --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 255a953fed0f7..f42930295713b 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "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", + "funit": "npm run ftest", + "wunit": "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",