sxy-test-runner 1.0.12 → 1.0.13

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.
@@ -17,7 +17,7 @@ export async function showTestLoadingError(config, test, customOut = undefined)
17
17
  const indent = ' ';
18
18
  out();
19
19
  out(chalk.grey`File ${test.file}`);
20
- out(chalk.mediumred`Loading error: ${test.error}`);
20
+ out(chalk.mediumred`Loading error:\n${test.error}`);
21
21
 
22
22
  if (test.logs.length > 0) {
23
23
  out();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sxy-test-runner",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -40,7 +40,7 @@
40
40
  "mocha-trial": "mocha --watch --parallel --config unitTesting/.mocharc.cjs --watch-files dist,unitTesting dist/**/runTest.unitTest.js"
41
41
  },
42
42
  "dependencies": {
43
- "@babel/core": "^7.18.5",
43
+ "@babel/core": "^7.20.2",
44
44
  "chalk-extensions": "^1.0.1",
45
45
  "chokidar": "^3.5.3",
46
46
  "cross-env": "^7.0.3",
@@ -53,20 +53,20 @@
53
53
  "slash": "^5.0.0",
54
54
  "sxy-dev-tools": "^1.0.6",
55
55
  "sxy-helpers": "^1.0.0",
56
- "sxy-loader": "^2.0.9",
56
+ "sxy-loader": "^2.0.18",
57
57
  "sxy-standard": "^1.0.11",
58
58
  "sxy-standard-object-copy": "^1.0.5"
59
59
  },
60
60
  "devDependencies": {
61
- "@babel/cli": "^7.17.10",
61
+ "@babel/cli": "^7.19.3",
62
62
  "babel-plugin-transform-awaitful": "^1.0.0",
63
- "chai": "^4.3.6",
63
+ "chai": "^4.3.7",
64
64
  "chai-as-promised": "^7.1.1",
65
65
  "eslint": "^7.32.0",
66
66
  "eslint-config-sandi": "^1.2.0",
67
67
  "mocha": "^9.2.2",
68
68
  "mocha-steps": "^1.3.0",
69
- "nodemon": "^2.0.16",
69
+ "nodemon": "^2.0.20",
70
70
  "sinon": "^12.0.1",
71
71
  "sinon-chai": "^3.7.0"
72
72
  }
@@ -4,7 +4,7 @@ export default {
4
4
  mode: process.env.NODE_ENV, // 'development' | 'production' environment
5
5
  //transformCaching: 'content', // content | hash | false // default content
6
6
  //transformCacheStorage: 'file', // 'file' | 'memory'
7
- transformCacheStorageLocation: '__cache', // null | path/to/location/from/project/dir
7
+ //transformCacheStorageLocation: '__cache', // null | path/to/location/from/project/dir
8
8
  quiet: true, // disable info output
9
9
  debug: false, // debugging output // doesn't work yet
10
10
  }