@truedat/lm 6.12.3 → 6.12.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/lm",
|
|
3
|
-
"version": "6.12.
|
|
3
|
+
"version": "6.12.6",
|
|
4
4
|
"description": "Truedat Link Manager",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
]
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@truedat/core": "6.12.
|
|
89
|
+
"@truedat/core": "6.12.6",
|
|
90
90
|
"path-to-regexp": "^1.7.0",
|
|
91
91
|
"prop-types": "^15.8.1",
|
|
92
92
|
"react-graph-vis": "1.0.6",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"react-dom": ">= 16.8.6 < 17",
|
|
108
108
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "6ee7f5e8767d2149347997223377f91f0164ee34"
|
|
111
111
|
}
|
|
@@ -133,6 +133,9 @@ describe("<ImplementationRelationForm />", () => {
|
|
|
133
133
|
await waitFor(() => {
|
|
134
134
|
expect(container.querySelector(".loading")).toBeNull();
|
|
135
135
|
});
|
|
136
|
+
await waitFor(() => {
|
|
137
|
+
expect(getByText(/foo concept/)).toBeInTheDocument();
|
|
138
|
+
});
|
|
136
139
|
expect(container).toMatchSnapshot();
|
|
137
140
|
});
|
|
138
141
|
|