From 4d253405aca773e3e994c0259a3bc658c22430e0 Mon Sep 17 00:00:00 2001 From: Douglas Christopher Wilson Date: Tue, 8 Oct 2019 17:56:31 -0400 Subject: [PATCH] build: fix coverage reporting --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6eec393b..08d2fea7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -89,8 +89,8 @@ before_install: script: - | - # Run test script, depending on istanbul install - if npm_module_installed 'istanbul'; then npm run-script test-travis + # Run test script, depending on nyc install + if npm_module_installed 'nyc'; then npm run-script test-travis else npm test fi - |