From 10383c1cac7b0e51af50a02f256ccdcb26debc36 Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Mon, 17 Dec 2018 17:34:31 +0100 Subject: [PATCH] package.json: Fix unit-nyan script On test failures, npms error logs distorted the nyan cat rendering --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index db9d02505..398d91ef4 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "unit": "rimraf test/tmp && ava", "unit-verbose": "rimraf test/tmp && cross-env UI5_LOG_LVL=verbose ava --verbose --serial", "unit-watch": "rimraf test/tmp && ava --watch", - "unit-nyan": "npm run unit -- --tap | tnyan", + "unit-nyan": "rimraf test/tmp && ava --tap | tnyan", "unit-inspect": "cross-env UI5_LOG_LVL=verbose node --inspect-brk node_modules/ava/profile.js", "coverage": "nyc npm run unit", "jsdoc": "npm run jsdoc-generate && opn jsdocs/index.html",