From 794167254a9ddad6108b78f08e9cff066cb98f5a Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Sat, 18 Nov 2017 13:48:16 +0300 Subject: [PATCH] Drop flow checks for appveyor --- appveyor.yml | 2 +- package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 948ff76..25ca15c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,7 +11,7 @@ install: test_script: - node --version - npm --version - - npm test + - npm run mocha cache: - node_modules build: off diff --git a/package.json b/package.json index 9b94478..d05d508 100644 --- a/package.json +++ b/package.json @@ -42,8 +42,9 @@ }, "scripts": { "prepare": "npm run build", + "test": "npm run flow && npm run mocha", "build": "babel src/ -d lib/", - "test": "flow && nyc mocha -r @babel/register -R list tests/run.js", + "mocha": "nyc mocha -r @babel/register -R list tests/run.js", "flow": "flow" } }