@truedat/cx 7.5.7 → 7.5.10

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.
Files changed (110) hide show
  1. package/package.json +40 -70
  2. package/src/configurations/components/Configuration.js +3 -3
  3. package/src/configurations/components/ConfigurationActions.js +1 -2
  4. package/src/configurations/components/ConfigurationBreadcrumbs.js +2 -3
  5. package/src/configurations/components/ConfigurationCards.js +1 -2
  6. package/src/configurations/components/ConfigurationForm.js +6 -11
  7. package/src/configurations/components/ConfigurationLoader.js +1 -2
  8. package/src/configurations/components/ConfigurationRoutes.js +61 -72
  9. package/src/configurations/components/ConfigurationTokenLoader.js +0 -1
  10. package/src/configurations/components/Configurations.js +2 -2
  11. package/src/configurations/components/ConfigurationsLoader.js +0 -1
  12. package/src/configurations/components/DynamicConfigurationForm.js +5 -7
  13. package/src/configurations/components/EditConfiguration.js +0 -1
  14. package/src/configurations/components/NewConfiguration.js +0 -1
  15. package/src/configurations/components/__tests__/Configuration.spec.js +17 -10
  16. package/src/configurations/components/__tests__/ConfigurationCards.spec.js +22 -13
  17. package/src/configurations/components/__tests__/ConfigurationForm.spec.js +5 -5
  18. package/src/configurations/components/__tests__/ConfigurationLoader.spec.js +44 -36
  19. package/src/configurations/components/__tests__/ConfigurationTokenLoader.spec.js +46 -45
  20. package/src/configurations/components/__tests__/Configurations.spec.js +20 -22
  21. package/src/configurations/components/__tests__/ConfigurationsLoader.spec.js +32 -33
  22. package/src/configurations/components/__tests__/EditConfiguration.spec.js +5 -5
  23. package/src/configurations/components/__tests__/NewConfiguration.spec.js +0 -1
  24. package/src/configurations/components/__tests__/__snapshots__/Configuration.spec.js.snap +122 -57
  25. package/src/configurations/components/__tests__/__snapshots__/ConfigurationCards.spec.js.snap +160 -361
  26. package/src/configurations/components/__tests__/__snapshots__/ConfigurationForm.spec.js.snap +7 -6
  27. package/src/configurations/components/__tests__/__snapshots__/ConfigurationLoader.spec.js.snap +5 -31
  28. package/src/configurations/components/__tests__/__snapshots__/ConfigurationTokenLoader.spec.js.snap +5 -9
  29. package/src/configurations/components/__tests__/__snapshots__/Configurations.spec.js.snap +91 -72
  30. package/src/configurations/components/__tests__/__snapshots__/ConfigurationsLoader.spec.js.snap +5 -27
  31. package/src/configurations/components/__tests__/__snapshots__/EditConfiguration.spec.js.snap +12 -10
  32. package/src/configurations/components/__tests__/__snapshots__/NewConfiguration.spec.js.snap +11 -9
  33. package/src/configurations/components/index.js +1 -1
  34. package/src/configurations/reducers/configurationRedirect.js +1 -1
  35. package/src/configurations/reducers/configurations.js +1 -1
  36. package/src/configurations/reducers/index.js +1 -1
  37. package/src/configurations/reducers/systemConfigurations.js +1 -1
  38. package/src/configurations/sagas/signConfiguration.js +3 -1
  39. package/src/jobs/components/Job.js +0 -1
  40. package/src/jobs/components/JobBreadcrumbs.js +2 -3
  41. package/src/jobs/components/JobLoader.js +2 -2
  42. package/src/jobs/components/JobRoutes.js +28 -40
  43. package/src/jobs/components/JobRow.js +4 -4
  44. package/src/jobs/components/Jobs.js +5 -4
  45. package/src/jobs/components/JobsLabelResults.js +2 -3
  46. package/src/jobs/components/JobsSearch.js +0 -1
  47. package/src/jobs/components/JobsTable.js +3 -3
  48. package/src/jobs/components/JobsView.js +0 -1
  49. package/src/jobs/components/SourceJobs.js +0 -1
  50. package/src/jobs/components/__tests__/Job.spec.js +9 -11
  51. package/src/jobs/components/__tests__/JobBreadcrumbs.spec.js +5 -5
  52. package/src/jobs/components/__tests__/JobLoader.spec.js +12 -12
  53. package/src/jobs/components/__tests__/JobRow.spec.js +21 -20
  54. package/src/jobs/components/__tests__/Jobs.spec.js +1 -7
  55. package/src/jobs/components/__tests__/JobsLoader.spec.js +9 -9
  56. package/src/jobs/components/__tests__/JobsTable.spec.js +33 -28
  57. package/src/jobs/components/__tests__/JobsView.spec.js +1 -7
  58. package/src/jobs/components/__tests__/SourceJobs.spec.js +1 -7
  59. package/src/jobs/components/__tests__/__snapshots__/Job.spec.js.snap +143 -36
  60. package/src/jobs/components/__tests__/__snapshots__/JobBreadcrumbs.spec.js.snap +20 -30
  61. package/src/jobs/components/__tests__/__snapshots__/Jobs.spec.js.snap +10 -23
  62. package/src/jobs/components/__tests__/__snapshots__/JobsTable.spec.js.snap +7 -7
  63. package/src/jobs/components/__tests__/__snapshots__/JobsView.spec.js.snap +12 -24
  64. package/src/jobs/components/__tests__/__snapshots__/SourceJobs.spec.js.snap +8 -21
  65. package/src/jobs/reducers/jobActiveFilters.js +1 -1
  66. package/src/jobs/sagas/fetchJob.js +1 -1
  67. package/src/jobs/selectors/jobColumnsSelector.js +0 -1
  68. package/src/jobs/selectors/sourceJobColumnsSelector.js +0 -1
  69. package/src/sources/components/EditSource.js +0 -1
  70. package/src/sources/components/JobForm.js +1 -1
  71. package/src/sources/components/NewJob.js +0 -1
  72. package/src/sources/components/NewSource.js +0 -1
  73. package/src/sources/components/Source.js +0 -1
  74. package/src/sources/components/SourceActions.js +1 -2
  75. package/src/sources/components/SourceBreadcrumbs.js +1 -2
  76. package/src/sources/components/SourceConfiguration.js +3 -3
  77. package/src/sources/components/SourceDetail.js +46 -50
  78. package/src/sources/components/SourceForm.js +4 -7
  79. package/src/sources/components/SourceHeader.js +0 -1
  80. package/src/sources/components/SourceRoutes.js +30 -23
  81. package/src/sources/components/SourceSelector.js +0 -1
  82. package/src/sources/components/SourceTabs.js +14 -7
  83. package/src/sources/components/Sources.js +2 -2
  84. package/src/sources/components/SourcesTable.js +1 -2
  85. package/src/sources/components/__tests__/EditSource.spec.js +10 -12
  86. package/src/sources/components/__tests__/NewSource.spec.js +5 -10
  87. package/src/sources/components/__tests__/Source.spec.js +19 -27
  88. package/src/sources/components/__tests__/SourceActions.spec.js +1 -2
  89. package/src/sources/components/__tests__/SourceBreadcrumbs.spec.js +0 -1
  90. package/src/sources/components/__tests__/SourceDetail.spec.js +62 -38
  91. package/src/sources/components/__tests__/SourceForm.spec.js +109 -86
  92. package/src/sources/components/__tests__/SourceHeader.spec.js +1 -2
  93. package/src/sources/components/__tests__/SourceRoutes.spec.js +79 -7
  94. package/src/sources/components/__tests__/SourceSelector.spec.js +0 -1
  95. package/src/sources/components/__tests__/SourceTabs.spec.js +3 -4
  96. package/src/sources/components/__tests__/Sources.spec.js +24 -39
  97. package/src/sources/components/__tests__/SourcesTable.spec.js +48 -65
  98. package/src/sources/components/__tests__/__snapshots__/EditSource.spec.js.snap +134 -15
  99. package/src/sources/components/__tests__/__snapshots__/NewSource.spec.js.snap +36 -23
  100. package/src/sources/components/__tests__/__snapshots__/Source.spec.js.snap +28 -31
  101. package/src/sources/components/__tests__/__snapshots__/SourceActions.spec.js.snap +1 -1
  102. package/src/sources/components/__tests__/__snapshots__/SourceBreadcrumbs.spec.js.snap +2 -1
  103. package/src/sources/components/__tests__/__snapshots__/SourceDetail.spec.js.snap +13 -172
  104. package/src/sources/components/__tests__/__snapshots__/SourceForm.spec.js.snap +132 -106
  105. package/src/sources/components/__tests__/__snapshots__/SourceHeader.spec.js.snap +4 -4
  106. package/src/sources/components/__tests__/__snapshots__/SourceRoutes.spec.js.snap +47 -5
  107. package/src/sources/components/__tests__/__snapshots__/SourceTabs.spec.js.snap +5 -3
  108. package/src/sources/components/__tests__/__snapshots__/Sources.spec.js.snap +14 -11
  109. package/src/sources/components/__tests__/__snapshots__/SourcesTable.spec.js.snap +17 -12
  110. package/src/jobs/components/ConfigurationRoutes.js +0 -31
@@ -1,391 +1,190 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`<ConfigurationCards /> matches the latest snapshot 1`] = `
4
- <CardGroup>
5
- <Card
6
- key="0"
4
+ <div>
5
+ <div
6
+ class="ui cards"
7
7
  >
8
- <CardContent>
9
- <CardHeader
10
- as={
11
- {
12
- "$$typeof": Symbol(react.forward_ref),
13
- "displayName": "Link",
14
- "propTypes": {
15
- "innerRef": [Function],
16
- "onClick": [Function],
17
- "replace": [Function],
18
- "target": [Function],
19
- "to": [Function],
20
- },
21
- "render": [Function],
22
- }
23
- }
24
- to="/configurations/con_url"
25
- >
26
- <MemoizedFormattedMessage
27
- defaultMessage="con_url"
28
- id="configuration.con_url"
29
- />
30
- </CardHeader>
31
- <CardDescription>
32
- <MemoizedFormattedMessage
33
- defaultMessage="a"
34
- id="a"
35
- />
36
- </CardDescription>
37
- </CardContent>
38
- <CardContent
39
- extra={true}
8
+ <div
9
+ class="ui card"
40
10
  >
41
11
  <div
42
- className="ui actions"
12
+ class="content"
43
13
  >
44
- <ConfirmModal
45
- content={
46
- <Memo(MemoizedFormattedMessage)
47
- id="configurations.actions.delete.confirmation.content"
48
- values={
49
- {
50
- "external_id": <b>
51
- con_url
52
- </b>,
53
- }
54
- }
55
- />
56
- }
57
- header={
58
- <Memo(MemoizedFormattedMessage)
59
- id="configurations.actions.delete.confirmation.header"
60
- />
61
- }
62
- icon="trash"
63
- onConfirm={[Function]}
64
- trigger={
65
- <Button
66
- as="button"
67
- basic={true}
68
- color="red"
69
- icon={
70
- <Icon
71
- as="i"
72
- color="red"
73
- name="trash alternate outline"
74
- />
75
- }
76
- />
77
- }
78
- />
14
+ <a
15
+ class="header"
16
+ data-discover="true"
17
+ href="/configurations/con_url"
18
+ >
19
+ con_url
20
+ </a>
21
+ <div
22
+ class="description"
23
+ >
24
+ a
25
+ </div>
79
26
  </div>
80
- </CardContent>
81
- </Card>
82
- <Card
83
- key="1"
84
- >
85
- <CardContent>
86
- <CardHeader
87
- as={
88
- {
89
- "$$typeof": Symbol(react.forward_ref),
90
- "displayName": "Link",
91
- "propTypes": {
92
- "innerRef": [Function],
93
- "onClick": [Function],
94
- "replace": [Function],
95
- "target": [Function],
96
- "to": [Function],
97
- },
98
- "render": [Function],
99
- }
100
- }
101
- to="/configurations/id1"
27
+ <div
28
+ class="extra content"
102
29
  >
103
- <MemoizedFormattedMessage
104
- defaultMessage="id1"
105
- id="configuration.id1"
106
- />
107
- </CardHeader>
108
- <CardDescription>
109
- <MemoizedFormattedMessage
110
- defaultMessage="app-admin"
111
- id="app-admin"
112
- />
113
- </CardDescription>
114
- </CardContent>
115
- <CardContent
116
- extra={true}
30
+ <div
31
+ class="ui actions"
32
+ >
33
+ <button
34
+ class="ui red basic icon button"
35
+ >
36
+ <i
37
+ aria-hidden="true"
38
+ class="red trash alternate outline icon"
39
+ />
40
+ </button>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ <div
45
+ class="ui card"
117
46
  >
118
47
  <div
119
- className="ui actions"
48
+ class="content"
120
49
  >
121
- <ConfirmModal
122
- content={
123
- <Memo(MemoizedFormattedMessage)
124
- id="configurations.actions.delete.confirmation.content"
125
- values={
126
- {
127
- "external_id": <b>
128
- id1
129
- </b>,
130
- }
131
- }
132
- />
133
- }
134
- header={
135
- <Memo(MemoizedFormattedMessage)
136
- id="configurations.actions.delete.confirmation.header"
137
- />
138
- }
139
- icon="trash"
140
- onConfirm={[Function]}
141
- trigger={
142
- <Button
143
- as="button"
144
- basic={true}
145
- color="red"
146
- icon={
147
- <Icon
148
- as="i"
149
- color="red"
150
- name="trash alternate outline"
151
- />
152
- }
153
- />
154
- }
155
- />
50
+ <a
51
+ class="header"
52
+ data-discover="true"
53
+ href="/configurations/id1"
54
+ >
55
+ id1
56
+ </a>
57
+ <div
58
+ class="description"
59
+ >
60
+ app-admin
61
+ </div>
156
62
  </div>
157
- </CardContent>
158
- </Card>
159
- <Card
160
- key="2"
161
- >
162
- <CardContent>
163
- <CardHeader
164
- as={
165
- {
166
- "$$typeof": Symbol(react.forward_ref),
167
- "displayName": "Link",
168
- "propTypes": {
169
- "innerRef": [Function],
170
- "onClick": [Function],
171
- "replace": [Function],
172
- "target": [Function],
173
- "to": [Function],
174
- },
175
- "render": [Function],
176
- }
177
- }
178
- to="/configurations/id2"
63
+ <div
64
+ class="extra content"
179
65
  >
180
- <MemoizedFormattedMessage
181
- defaultMessage="id2"
182
- id="configuration.id2"
183
- />
184
- </CardHeader>
185
- <CardDescription>
186
- <MemoizedFormattedMessage
187
- defaultMessage="app-admin"
188
- id="app-admin"
189
- />
190
- </CardDescription>
191
- </CardContent>
192
- <CardContent
193
- extra={true}
66
+ <div
67
+ class="ui actions"
68
+ >
69
+ <button
70
+ class="ui red basic icon button"
71
+ >
72
+ <i
73
+ aria-hidden="true"
74
+ class="red trash alternate outline icon"
75
+ />
76
+ </button>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ <div
81
+ class="ui card"
194
82
  >
195
83
  <div
196
- className="ui actions"
84
+ class="content"
197
85
  >
198
- <ConfirmModal
199
- content={
200
- <Memo(MemoizedFormattedMessage)
201
- id="configurations.actions.delete.confirmation.content"
202
- values={
203
- {
204
- "external_id": <b>
205
- id2
206
- </b>,
207
- }
208
- }
209
- />
210
- }
211
- header={
212
- <Memo(MemoizedFormattedMessage)
213
- id="configurations.actions.delete.confirmation.header"
214
- />
215
- }
216
- icon="trash"
217
- onConfirm={[Function]}
218
- trigger={
219
- <Button
220
- as="button"
221
- basic={true}
222
- color="red"
223
- icon={
224
- <Icon
225
- as="i"
226
- color="red"
227
- name="trash alternate outline"
228
- />
229
- }
230
- />
231
- }
232
- />
86
+ <a
87
+ class="header"
88
+ data-discover="true"
89
+ href="/configurations/id2"
90
+ >
91
+ id2
92
+ </a>
93
+ <div
94
+ class="description"
95
+ >
96
+ app-admin
97
+ </div>
233
98
  </div>
234
- </CardContent>
235
- </Card>
236
- <Card
237
- key="3"
238
- >
239
- <CardContent>
240
- <CardHeader
241
- as={
242
- {
243
- "$$typeof": Symbol(react.forward_ref),
244
- "displayName": "Link",
245
- "propTypes": {
246
- "innerRef": [Function],
247
- "onClick": [Function],
248
- "replace": [Function],
249
- "target": [Function],
250
- "to": [Function],
251
- },
252
- "render": [Function],
253
- }
254
- }
255
- to="/configurations/id3"
99
+ <div
100
+ class="extra content"
256
101
  >
257
- <MemoizedFormattedMessage
258
- defaultMessage="id3"
259
- id="configuration.id3"
260
- />
261
- </CardHeader>
262
- <CardDescription>
263
- <MemoizedFormattedMessage
264
- defaultMessage="app-admin"
265
- id="app-admin"
266
- />
267
- </CardDescription>
268
- </CardContent>
269
- <CardContent
270
- extra={true}
102
+ <div
103
+ class="ui actions"
104
+ >
105
+ <button
106
+ class="ui red basic icon button"
107
+ >
108
+ <i
109
+ aria-hidden="true"
110
+ class="red trash alternate outline icon"
111
+ />
112
+ </button>
113
+ </div>
114
+ </div>
115
+ </div>
116
+ <div
117
+ class="ui card"
271
118
  >
272
119
  <div
273
- className="ui actions"
120
+ class="content"
274
121
  >
275
- <ConfirmModal
276
- content={
277
- <Memo(MemoizedFormattedMessage)
278
- id="configurations.actions.delete.confirmation.content"
279
- values={
280
- {
281
- "external_id": <b>
282
- id3
283
- </b>,
284
- }
285
- }
286
- />
287
- }
288
- header={
289
- <Memo(MemoizedFormattedMessage)
290
- id="configurations.actions.delete.confirmation.header"
291
- />
292
- }
293
- icon="trash"
294
- onConfirm={[Function]}
295
- trigger={
296
- <Button
297
- as="button"
298
- basic={true}
299
- color="red"
300
- icon={
301
- <Icon
302
- as="i"
303
- color="red"
304
- name="trash alternate outline"
305
- />
306
- }
307
- />
308
- }
309
- />
122
+ <a
123
+ class="header"
124
+ data-discover="true"
125
+ href="/configurations/id3"
126
+ >
127
+ id3
128
+ </a>
129
+ <div
130
+ class="description"
131
+ >
132
+ app-admin
133
+ </div>
310
134
  </div>
311
- </CardContent>
312
- </Card>
313
- <Card
314
- key="4"
315
- >
316
- <CardContent>
317
- <CardHeader
318
- as={
319
- {
320
- "$$typeof": Symbol(react.forward_ref),
321
- "displayName": "Link",
322
- "propTypes": {
323
- "innerRef": [Function],
324
- "onClick": [Function],
325
- "replace": [Function],
326
- "target": [Function],
327
- "to": [Function],
328
- },
329
- "render": [Function],
330
- }
331
- }
332
- to="/configurations/id4"
135
+ <div
136
+ class="extra content"
333
137
  >
334
- <MemoizedFormattedMessage
335
- defaultMessage="id4"
336
- id="configuration.id4"
337
- />
338
- </CardHeader>
339
- <CardDescription>
340
- <MemoizedFormattedMessage
341
- defaultMessage="a"
342
- id="a"
343
- />
344
- </CardDescription>
345
- </CardContent>
346
- <CardContent
347
- extra={true}
138
+ <div
139
+ class="ui actions"
140
+ >
141
+ <button
142
+ class="ui red basic icon button"
143
+ >
144
+ <i
145
+ aria-hidden="true"
146
+ class="red trash alternate outline icon"
147
+ />
148
+ </button>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ <div
153
+ class="ui card"
348
154
  >
349
155
  <div
350
- className="ui actions"
156
+ class="content"
351
157
  >
352
- <ConfirmModal
353
- content={
354
- <Memo(MemoizedFormattedMessage)
355
- id="configurations.actions.delete.confirmation.content"
356
- values={
357
- {
358
- "external_id": <b>
359
- id4
360
- </b>,
361
- }
362
- }
363
- />
364
- }
365
- header={
366
- <Memo(MemoizedFormattedMessage)
367
- id="configurations.actions.delete.confirmation.header"
368
- />
369
- }
370
- icon="trash"
371
- onConfirm={[Function]}
372
- trigger={
373
- <Button
374
- as="button"
375
- basic={true}
376
- color="red"
377
- icon={
378
- <Icon
379
- as="i"
380
- color="red"
381
- name="trash alternate outline"
382
- />
383
- }
158
+ <a
159
+ class="header"
160
+ data-discover="true"
161
+ href="/configurations/id4"
162
+ >
163
+ id4
164
+ </a>
165
+ <div
166
+ class="description"
167
+ >
168
+ a
169
+ </div>
170
+ </div>
171
+ <div
172
+ class="extra content"
173
+ >
174
+ <div
175
+ class="ui actions"
176
+ >
177
+ <button
178
+ class="ui red basic icon button"
179
+ >
180
+ <i
181
+ aria-hidden="true"
182
+ class="red trash alternate outline icon"
384
183
  />
385
- }
386
- />
184
+ </button>
185
+ </div>
387
186
  </div>
388
- </CardContent>
389
- </Card>
390
- </CardGroup>
187
+ </div>
188
+ </div>
189
+ </div>
391
190
  `;
@@ -9,7 +9,7 @@ exports[`<ConfigurationForm /> matches the latest snapshot 1`] = `
9
9
  class="required field"
10
10
  >
11
11
  <label>
12
- Id Externo
12
+ configuration.props.external_id
13
13
  </label>
14
14
  <div
15
15
  class="disabled field"
@@ -30,7 +30,7 @@ exports[`<ConfigurationForm /> matches the latest snapshot 1`] = `
30
30
  class="required field"
31
31
  >
32
32
  <label>
33
- Type
33
+ type.selector.label
34
34
  </label>
35
35
  <div
36
36
  class="disabled required field"
@@ -58,7 +58,7 @@ exports[`<ConfigurationForm /> matches the latest snapshot 1`] = `
58
58
  class="divider default text"
59
59
  role="alert"
60
60
  >
61
- Source type (template)
61
+ type.selector.placeholder
62
62
  </div>
63
63
  <i
64
64
  aria-hidden="true"
@@ -91,7 +91,7 @@ exports[`<ConfigurationForm /> matches the latest snapshot 1`] = `
91
91
  <label
92
92
  class="label"
93
93
  >
94
- Content
94
+ configuration.content.label
95
95
  </label>
96
96
  </div>
97
97
  <div
@@ -99,17 +99,18 @@ exports[`<ConfigurationForm /> matches the latest snapshot 1`] = `
99
99
  >
100
100
  <a
101
101
  class="ui secondary button"
102
+ data-discover="true"
102
103
  href="/"
103
104
  role="button"
104
105
  >
105
- Cancel
106
+ actions.cancel
106
107
  </a>
107
108
  <button
108
109
  class="ui primary disabled button"
109
110
  disabled=""
110
111
  tabindex="-1"
111
112
  >
112
- Save
113
+ actions.save
113
114
  </button>
114
115
  </div>
115
116
  </form>
@@ -1,35 +1,9 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`<ConfigurationLoader /> matches the latest snapshot 1`] = `
4
- <ConfigurationLoader
5
- clearConfiguration={[MockFunction]}
6
- configurationLoading={true}
7
- fetchConfiguration={
8
- [MockFunction] {
9
- "calls": [
10
- [
11
- {
12
- "external_id": 1,
13
- },
14
- ],
15
- ],
16
- "results": [
17
- {
18
- "type": "return",
19
- "value": undefined,
20
- },
21
- ],
22
- }
23
- }
24
- >
25
- <Loading>
26
- <Loader
27
- active={true}
28
- >
29
- <div
30
- className="ui active loader"
31
- />
32
- </Loader>
33
- </Loading>
34
- </ConfigurationLoader>
4
+ <div>
5
+ <div
6
+ class="ui active loader"
7
+ />
8
+ </div>
35
9
  `;
@@ -1,13 +1,9 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`<ConfigurationTokenLoader /> matches the latest snapshot 1`] = `
4
- <ConfigurationTokenLoader
5
- clearConfigurationToken={[MockFunction]}
6
- clearDashboardDomains={[MockFunction]}
7
- configurationTokenLoading={false}
8
- dashboardDomains={[]}
9
- dashboardId={1}
10
- externalId="externalId"
11
- signConfiguration={[MockFunction]}
12
- />
4
+ <div>
5
+ <div
6
+ class="ui active loader"
7
+ />
8
+ </div>
13
9
  `;