sxy-test-runner 1.3.2 → 1.3.4

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.
@@ -28,7 +28,7 @@ export async function runTests(config, testFiles, failingTests, customOut = unde
28
28
  ////out(``) // spacer before tests output
29
29
 
30
30
  if (testFiles.length > 0) {
31
- // clear load cache to allow accesing the new tets
31
+ // clear load cache to allow accessing the new tets
32
32
  await load.cache.clear();
33
33
  for (const testFile of testFiles) {
34
34
  const test = await loadTestFile(config, testFile);
@@ -22,9 +22,9 @@ export async function showTestLoadingError(config, test, customOut = undefined)
22
22
  out(chalk.mediumred`Loading error:\n${test.error}`);
23
23
  if (test.logs && test.logs.length > 0) {
24
24
  out();
25
- out(indent + chalk.grey`console.logs:`);
25
+ out( /*indent + */chalk.grey`console.logs:`);
26
26
  test.logs.forEach(async log => {
27
- log[0] = indent + log[0];
27
+ /*log[0] = indent + log[0]*/
28
28
  await out(...log);
29
29
  });
30
30
  }
package/dist/cli/watch.js CHANGED
@@ -63,7 +63,7 @@ export async function watch() {
63
63
  //// async function, run in separate thread
64
64
  }
65
65
  } else {
66
- await out(chalk.brightblue`no tests founds`);
66
+ await out(chalk.brightblue`no tests found`);
67
67
  await out(chalk.brightblue`watching...`);
68
68
  }
69
69
  const {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sxy-test-runner",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "license": "MIT",
5
5
  "homepage": "https://github.com/RobertSandiford/sxy-test-runner",
6
6
  "repository": {
@@ -29,9 +29,9 @@
29
29
  "readme.md"
30
30
  ],
31
31
  "dependencies": {
32
- "@babel/core": "^7.23.5",
32
+ "@babel/core": "^7.24.4",
33
33
  "chalk-extensions": "^1.0.1",
34
- "chokidar": "^3.5.3",
34
+ "chokidar": "^3.6.0",
35
35
  "cross-env": "^7.0.3",
36
36
  "dependency-tree": "^8.1.2",
37
37
  "figures": "^4.0.1",
@@ -44,14 +44,14 @@
44
44
  "sxy-helpers": "^1.0.0",
45
45
  "sxy-lib": "^1.0.12",
46
46
  "sxy-lib-object-copy": "^1.0.5",
47
- "sxy-loader": "^3.0.0",
47
+ "sxy-loader": "^3.0.27",
48
48
  "sxy-standard": "^1.0.12",
49
49
  "sxy-standard-object-copy": "^1.0.5"
50
50
  },
51
51
  "devDependencies": {
52
- "@babel/cli": "^7.23.4",
52
+ "@babel/cli": "^7.24.1",
53
53
  "babel-plugin-transform-awaitful": "^1.0.0",
54
- "chai": "^4.3.10",
54
+ "chai": "^4.4.1",
55
55
  "chai-as-promised": "^7.1.1",
56
56
  "eslint": "^7.32.0",
57
57
  "eslint-config-sandi": "^1.2.0",