From 1742709694d302ade82b39a9f612e38505e3b410 Mon Sep 17 00:00:00 2001 From: rkpattnaik780 Date: Mon, 29 Apr 2019 16:17:43 +0530 Subject: [PATCH] chore: include lint script as a part of test --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c10d136..a064e01 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "start": "npm run dev", "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run", "e2e": "node test/e2e/runner.js", - "test": "npm run unit && npm run e2e", + "test": "npm run lint && npm run unit && npm run e2e", "lint": "eslint --ext .js,.vue src test/unit test/e2e/specs", "build": "node build/build.js" },