@truedat/dq 7.0.8 → 7.1.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 +5 -5
- package/src/components/__tests__/ExecutionGroupContent.spec.js +5 -6
- package/src/components/__tests__/NewRuleImplementation.spec.js +9 -11
- package/src/components/__tests__/__snapshots__/ImplementationActions.spec.js.snap +1 -0
- package/src/components/__tests__/__snapshots__/RuleActions.spec.js.snap +1 -0
- package/src/components/__tests__/__snapshots__/RuleImplementation.spec.js.snap +1 -0
- package/src/components/ruleImplementationForm/__tests__/DataSetForm.spec.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/dq",
|
|
3
|
-
"version": "7.0
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"description": "Truedat Web Data Quality Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@testing-library/jest-dom": "^5.16.5",
|
|
35
35
|
"@testing-library/react": "^12.0.0",
|
|
36
36
|
"@testing-library/user-event": "^13.2.1",
|
|
37
|
-
"@truedat/test": "7.0
|
|
37
|
+
"@truedat/test": "7.1.0",
|
|
38
38
|
"babel-jest": "^28.1.0",
|
|
39
39
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
40
40
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -92,8 +92,8 @@
|
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
94
|
"@apollo/client": "^3.7.1",
|
|
95
|
-
"@truedat/core": "7.0
|
|
96
|
-
"@truedat/df": "7.0
|
|
95
|
+
"@truedat/core": "7.1.0",
|
|
96
|
+
"@truedat/df": "7.1.0",
|
|
97
97
|
"decode-uri-component": "^0.2.2",
|
|
98
98
|
"graphql": "^15.5.3",
|
|
99
99
|
"moment": "^2.29.4",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"react-dom": ">= 16.8.6 < 17",
|
|
119
119
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "cb08380da04c7286e694540bc24d32f01a728dfc"
|
|
122
122
|
}
|
|
@@ -18,13 +18,12 @@ describe("<ExecutionGroupContent />", () => {
|
|
|
18
18
|
<ExecutionGroupContent content={content} />,
|
|
19
19
|
renderOpts
|
|
20
20
|
);
|
|
21
|
-
await waitFor(() =>
|
|
22
|
-
|
|
23
|
-
expect(queryByText(
|
|
24
|
-
|
|
21
|
+
await waitFor(() => {
|
|
22
|
+
expect(queryByText(/lazy/i)).not.toBeInTheDocument();
|
|
23
|
+
expect(queryByText("field1")).toBeInTheDocument();
|
|
24
|
+
expect(queryByText("foo")).toBeInTheDocument();
|
|
25
|
+
});
|
|
25
26
|
|
|
26
27
|
expect(container).toMatchSnapshot();
|
|
27
|
-
expect(queryByText("field1")).toBeInTheDocument();
|
|
28
|
-
expect(queryByText("foo")).toBeInTheDocument();
|
|
29
28
|
});
|
|
30
29
|
});
|
|
@@ -76,13 +76,11 @@ describe("<NewRuleImplementation />", () => {
|
|
|
76
76
|
renderOpts
|
|
77
77
|
);
|
|
78
78
|
|
|
79
|
-
await waitFor(() =>
|
|
80
|
-
|
|
81
|
-
expect(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
expect(queryByText(/Information/i)).toBeInTheDocument()
|
|
85
|
-
);
|
|
79
|
+
await waitFor(() => {
|
|
80
|
+
expect(queryByText(/lazy/i)).not.toBeInTheDocument();
|
|
81
|
+
expect(container.querySelector(".loader")).not.toBeInTheDocument();
|
|
82
|
+
expect(queryByText("Template")).toBeInTheDocument();
|
|
83
|
+
});
|
|
86
84
|
expect(container).toMatchSnapshot();
|
|
87
85
|
});
|
|
88
86
|
|
|
@@ -91,10 +89,10 @@ describe("<NewRuleImplementation />", () => {
|
|
|
91
89
|
<NewRuleImplementationComponent {...newRuleImplementationProps} />,
|
|
92
90
|
renderOpts
|
|
93
91
|
);
|
|
94
|
-
await waitFor(() =>
|
|
95
|
-
|
|
96
|
-
expect(
|
|
97
|
-
);
|
|
92
|
+
await waitFor(() => {
|
|
93
|
+
expect(queryByText(/lazy/i)).not.toBeInTheDocument();
|
|
94
|
+
expect(container.querySelector(".loader")).not.toBeInTheDocument();
|
|
95
|
+
});
|
|
98
96
|
expect(container).toMatchSnapshot();
|
|
99
97
|
});
|
|
100
98
|
});
|
|
@@ -52,10 +52,10 @@ describe("<DatasetForm />", () => {
|
|
|
52
52
|
renderOpts
|
|
53
53
|
);
|
|
54
54
|
|
|
55
|
-
await waitFor(() =>
|
|
56
|
-
|
|
57
|
-
expect(
|
|
58
|
-
);
|
|
55
|
+
await waitFor(() => {
|
|
56
|
+
expect(queryByText(/lazy/i)).not.toBeInTheDocument();
|
|
57
|
+
expect(container.querySelector(".loader")).not.toBeInTheDocument();
|
|
58
|
+
});
|
|
59
59
|
|
|
60
60
|
expect(container).toMatchSnapshot();
|
|
61
61
|
});
|