testeranto 0.219.5 → 0.219.6

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
@@ -2,7 +2,7 @@
2
2
  "name": "testeranto",
3
3
  "displayName": "Testeranto",
4
4
  "description": "the Dockerized, AI powered, BDD test framework for polyglot projects",
5
- "version": "0.219.5",
5
+ "version": "0.219.6",
6
6
  "engines": {
7
7
  "node": ">=20.19.0",
8
8
  "vscode": "^1.60.0"
@@ -414,4 +414,4 @@
414
414
  "cucumber",
415
415
  "ATDD"
416
416
  ]
417
- }
417
+ }
@@ -13,12 +13,15 @@ export default (
13
13
  config: ITestconfig,
14
14
  testName: string
15
15
  ): BuildOptions => {
16
+
17
+ console.log(config)
18
+
16
19
  // Get entry points from config, or use a default
17
20
  let entrypoints: string[] = [];
18
21
  if (config.node?.tests) {
19
22
  entrypoints = Object.keys(config.node.tests);
20
23
  } else {
21
- console.log(config)
24
+
22
25
  throw "config.node.tests should exist"
23
26
  // Fallback to a reasonable default
24
27
  // entrypoints = ["./example/Calculator.test.ts"];