@truedat/lm 6.12.1 → 6.12.3

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.1",
3
+ "version": "6.12.3",
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.1",
89
+ "@truedat/core": "6.12.3",
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": "0e64673b5e798d15560f153c6ae0aede669b1dab"
110
+ "gitHead": "2a55116634e90fc77f5317f980b7117e7dbdea31"
111
111
  }
@@ -135,6 +135,10 @@ describe("<StructureRelationForm />", () => {
135
135
  await waitFor(() => {
136
136
  expect(container.querySelector(".loading")).toBeNull();
137
137
  });
138
+ await waitFor(() => {
139
+ expect(getByText(/foo concept/)).toBeInTheDocument();
140
+ });
141
+
138
142
  expect(container).toMatchSnapshot();
139
143
  });
140
144