From 1fcc562f8c69784272e8a7bfc0fda0c4a5872b74 Mon Sep 17 00:00:00 2001 From: Douglas Christopher Wilson Date: Fri, 17 May 2019 08:32:04 -0400 Subject: [PATCH] build: fix the nyc build commands --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index bb128fba9..e1d3b0bca 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "scripts": { "lint": "eslint .", "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/", - "test-cov": "nyc --reporter=text npm test", - "test-travis": "nyc --reporter=html --reporter=text npm test" + "test-cov": "nyc --reporter=html --reporter=text npm test", + "test-travis": "nyc --reporter=text npm test" } }