testeranto 0.235.5 → 0.235.7
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.
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
import React, { useState } from "react";
|
|
6
6
|
import ReactDOM from "react-dom/client";
|
|
7
7
|
|
|
8
|
-
// IMPORTANT : all imports need tog through
|
|
8
|
+
// IMPORTANT : all imports need tog through stakeholderApp
|
|
9
9
|
import {
|
|
10
10
|
VisualizationTabs,
|
|
11
|
-
} from "testeranto/
|
|
11
|
+
} from "testeranto/stakeholderApp";
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export interface StakeholderData {
|
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.235.
|
|
5
|
+
"version": "0.235.7",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=20.19.0",
|
|
8
8
|
"vscode": "^1.60.0",
|
|
@@ -130,8 +130,8 @@
|
|
|
130
130
|
"ATDD"
|
|
131
131
|
],
|
|
132
132
|
"exports": {
|
|
133
|
-
"./
|
|
134
|
-
"import": "./src/
|
|
133
|
+
"./stakeholderApp/*": {
|
|
134
|
+
"import": "./src/stakeholderApp"
|
|
135
135
|
},
|
|
136
136
|
"./src/cjs-shim.ts": {
|
|
137
137
|
"import": "./dist/cjs-shim.js",
|
|
@@ -362,4 +362,4 @@
|
|
|
362
362
|
"@esbuild/win32-x64": "^0.27.2",
|
|
363
363
|
"esbuild": "0.27.3"
|
|
364
364
|
}
|
|
365
|
-
}
|
|
365
|
+
}
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
import React, { useState } from "react";
|
|
6
6
|
import ReactDOM from "react-dom/client";
|
|
7
7
|
|
|
8
|
-
// IMPORTANT : all imports need tog through
|
|
8
|
+
// IMPORTANT : all imports need tog through stakeholderApp
|
|
9
9
|
import {
|
|
10
10
|
VisualizationTabs,
|
|
11
|
-
} from "testeranto/
|
|
11
|
+
} from "testeranto/stakeholderApp";
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
export interface StakeholderData {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { getNodeIcon } from "testeranto/
|
|
2
|
+
import { getNodeIcon } from "testeranto/StakeholderUtils";
|
|
3
3
|
import { getNodeBackgroundColor } from "./nodeStyleUtils";
|
|
4
4
|
|
|
5
5
|
export interface TreeViewProps {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// Export types and utilities for the stakeholder app
|
|
2
|
-
export { createFileContentFromNode, togglePathInSet } from "./stakeholderApp/utils";
|
|
1
|
+
// // Export types and utilities for the stakeholder app
|
|
2
|
+
// export { createFileContentFromNode, togglePathInSet } from "./stakeholderApp/utils";
|
|
3
3
|
|
|
4
|
-
// Export React components
|
|
5
|
-
export { TreePanel } from "./stakeholderApp/TreePanel";
|
|
6
|
-
export { TestResultsSummary } from "./stakeholderApp/TestResultsSummary";
|
|
7
|
-
export { VisualizationPanel } from "./stakeholderApp/VisualizationPanel";
|
|
8
|
-
export { VisualizationTabs } from "./stakeholderApp/VisualizationTabs";
|
|
4
|
+
// // Export React components
|
|
5
|
+
// export { TreePanel } from "./stakeholderApp/TreePanel";
|
|
6
|
+
// export { TestResultsSummary } from "./stakeholderApp/TestResultsSummary";
|
|
7
|
+
// export { VisualizationPanel } from "./stakeholderApp/VisualizationPanel";
|
|
8
|
+
// export { VisualizationTabs } from "./stakeholderApp/VisualizationTabs";
|