style: fix unused vars in unit test

This commit is contained in:
harttle
2019-02-19 23:01:59 +08:00
parent 852c6ad453
commit 64a9eb79c5
9 changed files with 13 additions and 10 deletions
+2 -2
View File
@@ -7,8 +7,8 @@
"browser": "dist/liquid.js",
"scripts": {
"lint": "eslint . --ext .ts --ext .js",
"unit": "mocha test/unit/*.ts test/unit/**/*.ts",
"e2e": "npm run build && mocha test/e2e/**/*.ts test/e2e/*.ts",
"unit": "mocha 'test/unit/**/*.ts'",
"e2e": "npm run build && mocha 'test/e2e/**/*.ts'",
"test": "npm run unit && npm run e2e",
"coverage-html": "nyc npm run unit && nyc report --reporter=html",
"coverage-coveralls": "nyc npm run unit && nyc report --reporter=text-lcov | coveralls",