@truedat/qx 6.12.4 → 6.13.0
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/qx",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.13.0",
|
|
4
4
|
"description": "Truedat Web Quality Experience package",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
]
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@truedat/core": "6.
|
|
87
|
+
"@truedat/core": "6.13.0",
|
|
88
88
|
"prop-types": "^15.8.1",
|
|
89
89
|
"react-hook-form": "^7.45.4",
|
|
90
90
|
"react-intl": "^5.20.10",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"react-dom": ">= 16.8.6 < 17",
|
|
98
98
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "9f05519bdba82542115e32e317d79094625bbef4"
|
|
101
101
|
}
|
|
@@ -117,7 +117,7 @@ describe("<ResourceSelector />", () => {
|
|
|
117
117
|
|
|
118
118
|
it("select data_structure", async () => {
|
|
119
119
|
const watcher = jest.fn();
|
|
120
|
-
const { container, getByRole } = render(
|
|
120
|
+
const { container, getByRole, findByText } = render(
|
|
121
121
|
<TestFormWrapper watcher={watcher}>
|
|
122
122
|
<SearchContext.Provider value={searchProps}>
|
|
123
123
|
<ResourceSelector />
|
|
@@ -133,6 +133,7 @@ describe("<ResourceSelector />", () => {
|
|
|
133
133
|
await waitFor(() => {
|
|
134
134
|
expect(container.querySelector(".loading")).toBeNull();
|
|
135
135
|
});
|
|
136
|
+
await findByText(/header/);
|
|
136
137
|
expect(container).toMatchSnapshot();
|
|
137
138
|
});
|
|
138
139
|
|