Skip to content

Commit

Permalink
chore: fix mocha pattern for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
harttle committed Mar 1, 2019
1 parent eeeacc4 commit cca0306
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"browser": "dist/liquid.js",
"scripts": {
"lint": "eslint . --ext .ts",
"unit": "mocha 'test/unit/**/*.ts'",
"integration": "mocha 'test/integration/**/*.ts'",
"e2e": "npm run build && mocha 'test/e2e/**/*.ts'",
"test": "npm run build && mocha 'test/**/*.ts'",
"unit": "mocha \"test/unit/**/*.ts\"",
"integration": "mocha \"test/integration/**/*.ts\"",
"e2e": "npm run build && mocha \"test/e2e/**/*.ts\"",
"test": "npm run build && mocha \"test/**/*.ts\"",
"benchmark": "ts-node benchmark",
"coverage-html": "nyc --reporter=html mocha 'test/{unit,integration}/**/*.ts'",
"coverage-coveralls": "nyc mocha 'test/{unit,integration}/**/*.ts' && nyc report --reporter=text-lcov | coveralls",
"coverage-html": "nyc --reporter=html mocha \"test/{unit,integration}/**/*.ts\"",
"coverage-coveralls": "nyc mocha \"test/{unit,integration}/**/*.ts\" && nyc report --reporter=text-lcov | coveralls",
"build": "rollup -c rollup.config.ts && ls -lh dist",
"version": "npm run build"
},
Expand Down

0 comments on commit cca0306

Please sign in to comment.