Skip to content

Commit

Permalink
Getting mocha executed directly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzrlk committed Apr 20, 2023
1 parent 4249e97 commit 731860b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
"scripts": {
"lint": "eslint --format codeframe \"lib/**/*.js\" \"test/**/*.js\"",
"lint:fix": "eslint --fix \"lib/**/*.js\" \"test/**/*.js\"",
"test": "node ./bin/cli.js test",
"test:unit": "cd test/unit && mocha .",
"test:integration": "cd test/integration && mocha .",
"test": "npm run test:unit && npm run test:integration",
"test:ci": "npm run lint && npm run test"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion test/.mocharc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module.exports = {
'jakefile.publish.js',
'jakefile.rule.js',
'helpers.js'
]
],
}

0 comments on commit 731860b

Please sign in to comment.