testeranto 0.79.68 → 0.79.69
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.
|
@@ -114,8 +114,15 @@ const Features = ({ features, tests, results, adminMode }) => {
|
|
|
114
114
|
return React.createElement(Crud2, { schema: featuresSchema, collectionName: "features", collection: features });
|
|
115
115
|
};
|
|
116
116
|
const Tests = ({ tests, results, features, adminMode }) => {
|
|
117
|
-
|
|
118
|
-
|
|
117
|
+
return React.createElement("div", null,
|
|
118
|
+
React.createElement(Navbar, { expand: "md", className: "bg-body-tertiary" },
|
|
119
|
+
React.createElement(Container, { fluid: true },
|
|
120
|
+
React.createElement(NavDropdown, { align: "end", title: "User", id: "basic-nav-dropdown" },
|
|
121
|
+
React.createElement(NavDropdown.Item, { href: "#action/3.4" }, "localhost:8080"),
|
|
122
|
+
React.createElement(NavDropdown.Divider, null),
|
|
123
|
+
React.createElement(NavDropdown.Item, { href: "#action/3.4" }, "origin/master"),
|
|
124
|
+
React.createElement(NavDropdown.Item, { href: "#action/3.4" }, "origin/feature")))),
|
|
125
|
+
React.createElement(Tab.Container, { id: "left-tabs-example5", defaultActiveKey: "feature-0" },
|
|
119
126
|
React.createElement(Row, null,
|
|
120
127
|
React.createElement(Col, { sm: 4 },
|
|
121
128
|
React.createElement(Nav, { variant: "pills", className: "flex-column" }, tests.tests.map((t, ndx) => React.createElement(Nav.Item, { key: ndx },
|
|
@@ -128,9 +135,7 @@ const Tests = ({ tests, results, features, adminMode }) => {
|
|
|
128
135
|
React.createElement("pre", null, JSON.stringify(Object.entries(results).filter(([k, v]) => {
|
|
129
136
|
console.log(v.src, tests.tests[ndx][0]);
|
|
130
137
|
return v.src === tests.tests[ndx][0];
|
|
131
|
-
}), null, 2))))))));
|
|
132
|
-
// return <Crud collectionName="features" collection={features}></Crud>
|
|
133
|
-
return React.createElement("div", null);
|
|
138
|
+
}), null, 2)))))))));
|
|
134
139
|
};
|
|
135
140
|
const TaskMan = ({ setAdminMode, users, adminMode, children }) => {
|
|
136
141
|
return React.createElement("div", null,
|