From 57d114dbf889c07f470c46858926569c326bd828 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sun, 16 Feb 2020 06:40:03 -0800 Subject: [PATCH] Making linting part of the unit tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d49dae3..2d06800 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "scripts": { "start": "node ./src/app.js", "dev": "nodemon ./dist/app.js", - "test": "npm run test-v3", + "test": "npm run lint && npm run test-v3", "lint": "standard --env mocha --fix", "test-v3": "export NETWORK=mainnet && nyc --reporter=text mocha --timeout 25000 test/v3/", "test:temp": "export NETWORK=mainnet && mocha --timeout 25000 test/v3/blockchain.js",