@truedat/dq 7.0.8 → 7.1.1

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/dq",
3
- "version": "7.0.8",
3
+ "version": "7.1.1",
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.8",
37
+ "@truedat/test": "7.1.1",
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.8",
96
- "@truedat/df": "7.0.8",
95
+ "@truedat/core": "7.1.1",
96
+ "@truedat/df": "7.1.1",
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": "ff536a41caac4df0cfa13df66dc2805b3bb7637a"
121
+ "gitHead": "f7aef0d8ae70d610b20a38b77589c9e614ae5fbd"
122
122
  }
@@ -20,6 +20,7 @@ const staticHeaderLabels = [
20
20
  "result",
21
21
  "execution",
22
22
  "inserted_at",
23
+ "updated_at",
23
24
  "executable",
24
25
  "structure_domains",
25
26
  ];
@@ -18,13 +18,12 @@ describe("<ExecutionGroupContent />", () => {
18
18
  <ExecutionGroupContent content={content} />,
19
19
  renderOpts
20
20
  );
21
- await waitFor(() => expect(queryByText(/lazy/i)).not.toBeInTheDocument());
22
- await waitFor(() =>
23
- expect(queryByText(/loading/i)).not.toBeInTheDocument()
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(() => expect(queryByText(/lazy/i)).not.toBeInTheDocument());
80
- await waitFor(() =>
81
- expect(queryByText(/loading/i)).not.toBeInTheDocument()
82
- );
83
- await waitFor(() =>
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(() => expect(queryByText(/lazy/i)).not.toBeInTheDocument());
95
- await waitFor(() =>
96
- expect(queryByText(/loading/i)).not.toBeInTheDocument()
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
  });
@@ -8,6 +8,7 @@ exports[`<ImplementationActions /> matches the snapshot 1`] = `
8
8
  Execute implementations
9
9
  </button>
10
10
  <div
11
+ aria-disabled="false"
11
12
  aria-expanded="false"
12
13
  class="ui floating dropdown button icon group-actions"
13
14
  role="listbox"
@@ -42,5 +42,6 @@ exports[`<RuleActions /> matches the latest snapshot 1`] = `
42
42
  ]
43
43
  }
44
44
  direction="left"
45
+ disabled={false}
45
46
  />
46
47
  `;
@@ -60,6 +60,7 @@ exports[`<RuleImplementation /> matches the latest snapshot 1`] = `
60
60
  Execute implementations
61
61
  </button>
62
62
  <div
63
+ aria-disabled="false"
63
64
  aria-expanded="false"
64
65
  class="ui floating dropdown button icon group-actions"
65
66
  role="listbox"
@@ -52,10 +52,10 @@ describe("<DatasetForm />", () => {
52
52
  renderOpts
53
53
  );
54
54
 
55
- await waitFor(() => expect(queryByText(/lazy/i)).not.toBeInTheDocument());
56
- await waitFor(() =>
57
- expect(queryByText(/loading/i)).not.toBeInTheDocument()
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
  });