@jcoreio/toolchain-mocha 3.3.1 → 3.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jcoreio/toolchain-mocha",
3
- "version": "3.3.1",
3
+ "version": "3.3.3",
4
4
  "description": "Mocha build toolchain",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,10 +22,10 @@
22
22
  "mocha": "^10.2.0",
23
23
  "nyc": "^15.1.0",
24
24
  "resolve-bin": "^1.0.0",
25
- "@jcoreio/toolchain": "3.3.1"
25
+ "@jcoreio/toolchain": "3.3.3"
26
26
  },
27
27
  "peerDependencies": {
28
- "@jcoreio/toolchain": "3.3.1"
28
+ "@jcoreio/toolchain": "3.3.3"
29
29
  },
30
30
  "toolchainManaged": {
31
31
  "devDependencies": {
@@ -5,7 +5,7 @@ module.exports = [
5
5
  coverage: {
6
6
  description: 'run tests with code coverage',
7
7
  run: async (args = []) => {
8
- await execa('nyc', ['mocha', ...args])
8
+ await execa('nyc', ['tc', 'test', ...args])
9
9
  },
10
10
  },
11
11
  test: {