@pingux/astro 2.35.0 → 2.36.0-alpha.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/lib/cjs/components/Calendar/Calendar.stories.js +19 -48
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +10 -16
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumbAxe.test.js +7 -0
- package/lib/cjs/utils/designUtils/figmaLinks.js +1 -7
- package/lib/components/Calendar/Calendar.stories.js +15 -45
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +7 -13
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumbAxe.test.js +4 -0
- package/lib/utils/designUtils/figmaLinks.js +1 -7
- package/package.json +1 -1
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumbUniversal.test.js +0 -10
- package/lib/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumbUniversal.test.js +0 -8
@@ -14,7 +14,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequ
|
|
14
14
|
_Object$defineProperty(exports, "__esModule", {
|
15
15
|
value: true
|
16
16
|
});
|
17
|
-
exports["default"] = exports.UnavailableDates = exports.MinimumDate = exports.MaximumDate = exports.Disabled = exports.DefaultValue = exports.Default = exports.Controlled = exports.Autofocus = void 0;
|
17
|
+
exports["default"] = exports.UnavailableDates = exports.ReadOnly = exports.MinimumDate = exports.MaximumDate = exports.Disabled = exports.DefaultValue = exports.Default = exports.Controlled = exports.Autofocus = void 0;
|
18
18
|
var _some = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/some"));
|
19
19
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/slicedToArray"));
|
20
20
|
var _extends2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/extends"));
|
@@ -142,12 +142,18 @@ var DefaultValue = function DefaultValue(args) {
|
|
142
142
|
}));
|
143
143
|
};
|
144
144
|
exports.DefaultValue = DefaultValue;
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
145
|
+
var Controlled = function Controlled(args) {
|
146
|
+
var _useState = (0, _react.useState)(null),
|
147
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
148
|
+
date = _useState2[0],
|
149
|
+
setDate = _useState2[1];
|
150
|
+
return (0, _react2.jsx)(_Calendar["default"], (0, _extends2["default"])({}, args, {
|
151
|
+
"aria-label": "calendar-component-controlled",
|
152
|
+
value: date,
|
153
|
+
onChange: setDate
|
154
|
+
}));
|
150
155
|
};
|
156
|
+
exports.Controlled = Controlled;
|
151
157
|
var Disabled = function Disabled(args) {
|
152
158
|
return (0, _react2.jsx)(_Calendar["default"], (0, _extends2["default"])({}, args, {
|
153
159
|
"aria-label": "calendar-component-disabled",
|
@@ -155,12 +161,13 @@ var Disabled = function Disabled(args) {
|
|
155
161
|
}));
|
156
162
|
};
|
157
163
|
exports.Disabled = Disabled;
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
}
|
164
|
+
var ReadOnly = function ReadOnly(args) {
|
165
|
+
return (0, _react2.jsx)(_Calendar["default"], (0, _extends2["default"])({}, args, {
|
166
|
+
"aria-label": "calendar-component-readonly",
|
167
|
+
isReadOnly: true
|
168
|
+
}));
|
163
169
|
};
|
170
|
+
exports.ReadOnly = ReadOnly;
|
164
171
|
var UnavailableDates = function UnavailableDates(args) {
|
165
172
|
var unavailableRanges = [['2022-07-29', '2022-08-05'], ['2022-08-15', '2022-08-20'], ['2022-08-25', '2022-08-26']];
|
166
173
|
// This function is run against each date in the calendar
|
@@ -176,12 +183,6 @@ var UnavailableDates = function UnavailableDates(args) {
|
|
176
183
|
}));
|
177
184
|
};
|
178
185
|
exports.UnavailableDates = UnavailableDates;
|
179
|
-
UnavailableDates.parameters = {
|
180
|
-
design: {
|
181
|
-
type: 'figma',
|
182
|
-
url: _figmaLinks.FIGMA_LINKS.calendar.unavailableDates
|
183
|
-
}
|
184
|
-
};
|
185
186
|
var MinimumDate = function MinimumDate(args) {
|
186
187
|
return (0, _react2.jsx)(_Calendar["default"], (0, _extends2["default"])({}, args, {
|
187
188
|
"aria-label": "calendar-component-min-date",
|
@@ -190,12 +191,6 @@ var MinimumDate = function MinimumDate(args) {
|
|
190
191
|
}));
|
191
192
|
};
|
192
193
|
exports.MinimumDate = MinimumDate;
|
193
|
-
MinimumDate.parameters = {
|
194
|
-
design: {
|
195
|
-
type: 'figma',
|
196
|
-
url: _figmaLinks.FIGMA_LINKS.calendar.minimumDate
|
197
|
-
}
|
198
|
-
};
|
199
194
|
var MaximumDate = function MaximumDate(args) {
|
200
195
|
return (0, _react2.jsx)(_Calendar["default"], (0, _extends2["default"])({}, args, {
|
201
196
|
"aria-label": "calendar-component-max-date",
|
@@ -204,34 +199,10 @@ var MaximumDate = function MaximumDate(args) {
|
|
204
199
|
}));
|
205
200
|
};
|
206
201
|
exports.MaximumDate = MaximumDate;
|
207
|
-
MaximumDate.parameters = {
|
208
|
-
design: {
|
209
|
-
type: 'figma',
|
210
|
-
url: _figmaLinks.FIGMA_LINKS.calendar.maximumDate
|
211
|
-
}
|
212
|
-
};
|
213
202
|
var Autofocus = function Autofocus(args) {
|
214
203
|
return (0, _react2.jsx)(_Calendar["default"], (0, _extends2["default"])({}, args, {
|
215
204
|
"aria-label": "calendar-component",
|
216
205
|
hasAutoFocus: true
|
217
206
|
}));
|
218
207
|
};
|
219
|
-
exports.Autofocus = Autofocus;
|
220
|
-
Autofocus.parameters = {
|
221
|
-
design: {
|
222
|
-
type: 'figma',
|
223
|
-
url: _figmaLinks.FIGMA_LINKS.calendar.autofocus
|
224
|
-
}
|
225
|
-
};
|
226
|
-
var Controlled = function Controlled(args) {
|
227
|
-
var _useState = (0, _react.useState)(null),
|
228
|
-
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
229
|
-
date = _useState2[0],
|
230
|
-
setDate = _useState2[1];
|
231
|
-
return (0, _react2.jsx)(_Calendar["default"], (0, _extends2["default"])({}, args, {
|
232
|
-
"aria-label": "calendar-component-controlled",
|
233
|
-
value: date,
|
234
|
-
onChange: setDate
|
235
|
-
}));
|
236
|
-
};
|
237
|
-
exports.Controlled = Controlled;
|
208
|
+
exports.Autofocus = Autofocus;
|
@@ -20,7 +20,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequ
|
|
20
20
|
_Object$defineProperty(exports, "__esModule", {
|
21
21
|
value: true
|
22
22
|
});
|
23
|
-
exports.
|
23
|
+
exports.getSectionsComponent = exports.getComponent = void 0;
|
24
24
|
var _concat = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/concat"));
|
25
25
|
var _forEach = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/for-each"));
|
26
26
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/asyncToGenerator"));
|
@@ -91,17 +91,18 @@ var defaultWithSectionsProps = {
|
|
91
91
|
items: itemsWithSections
|
92
92
|
};
|
93
93
|
var onSelectionChange = jest.fn();
|
94
|
-
var
|
95
|
-
return (0, _react2.jsx)(_.OverlayProvider, null, (0, _react2.jsx)(_.EnvironmentBreadcrumb, (0, _extends2["default"])({}, defaultProps, props), function (item) {
|
94
|
+
var getComponent = function getComponent(props) {
|
95
|
+
return (0, _testWrapper.render)((0, _react2.jsx)(_.OverlayProvider, null, (0, _react2.jsx)(_.EnvironmentBreadcrumb, (0, _extends2["default"])({}, defaultProps, props), function (item) {
|
96
96
|
return (0, _react2.jsx)(_.Item, {
|
97
97
|
key: item.name,
|
98
98
|
"data-testid": item.name
|
99
99
|
}, item.name);
|
100
|
-
}));
|
100
|
+
})));
|
101
101
|
};
|
102
|
-
exports.
|
103
|
-
var
|
104
|
-
|
102
|
+
exports.getComponent = getComponent;
|
103
|
+
var getSectionsComponent = function getSectionsComponent() {
|
104
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
105
|
+
return (0, _testWrapper.render)((0, _react2.jsx)(_.OverlayProvider, null, (0, _react2.jsx)(_.EnvironmentBreadcrumb, (0, _extends2["default"])({}, defaultWithSectionsProps, props), function (section) {
|
105
106
|
return (
|
106
107
|
// eslint-disable-next-line testing-library/no-node-access
|
107
108
|
(0, _react2.jsx)(_reactStately.Section, {
|
@@ -117,16 +118,9 @@ var renderSectionsComponent = function renderSectionsComponent(props) {
|
|
117
118
|
}, item.name);
|
118
119
|
})
|
119
120
|
);
|
120
|
-
}));
|
121
|
-
};
|
122
|
-
exports.renderSectionsComponent = renderSectionsComponent;
|
123
|
-
var getComponent = function getComponent(props) {
|
124
|
-
return (0, _testWrapper.render)(renderComponent(props));
|
125
|
-
};
|
126
|
-
var getSectionsComponent = function getSectionsComponent() {
|
127
|
-
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
128
|
-
return (0, _testWrapper.render)(renderSectionsComponent(props));
|
121
|
+
})));
|
129
122
|
};
|
123
|
+
exports.getSectionsComponent = getSectionsComponent;
|
130
124
|
beforeAll(function () {
|
131
125
|
jest.spyOn(window.HTMLElement.prototype, 'clientWidth', 'get').mockImplementation(function () {
|
132
126
|
return 1000;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
4
|
+
var _testAxe = _interopRequireDefault(require("../../utils/testUtils/testAxe"));
|
5
|
+
var _EnvironmentBreadcrumb = require("./EnvironmentBreadcrumb.test");
|
6
|
+
(0, _testAxe["default"])(_EnvironmentBreadcrumb.getComponent);
|
7
|
+
(0, _testAxe["default"])(_EnvironmentBreadcrumb.getSectionsComponent);
|
@@ -43,13 +43,7 @@ var FIGMA_LINKS = {
|
|
43
43
|
secondaryRightAligned: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=46080%3A788&mode=dev'
|
44
44
|
},
|
45
45
|
calendar: {
|
46
|
-
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=
|
47
|
-
defaultValue: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-14593&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
48
|
-
disabled: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-15106&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
49
|
-
unavailableDates: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-15681&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
50
|
-
minimumDate: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-16197&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
51
|
-
maximumDate: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-16454&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
52
|
-
autofocus: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-16768&mode=design&t=PX1Q47IuuVvOafDQ-4'
|
46
|
+
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=6373%3A25490&t=BoHXzVpQq9Lf7MaU-1'
|
53
47
|
},
|
54
48
|
callout: {
|
55
49
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=14289-33201&t=VgqEexa1CXAXfPpp-0'
|
@@ -128,11 +128,16 @@ export var DefaultValue = function DefaultValue(args) {
|
|
128
128
|
defaultValue: "2022-08-10"
|
129
129
|
}));
|
130
130
|
};
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
131
|
+
export var Controlled = function Controlled(args) {
|
132
|
+
var _useState = useState(null),
|
133
|
+
_useState2 = _slicedToArray(_useState, 2),
|
134
|
+
date = _useState2[0],
|
135
|
+
setDate = _useState2[1];
|
136
|
+
return ___EmotionJSX(Calendar, _extends({}, args, {
|
137
|
+
"aria-label": "calendar-component-controlled",
|
138
|
+
value: date,
|
139
|
+
onChange: setDate
|
140
|
+
}));
|
136
141
|
};
|
137
142
|
export var Disabled = function Disabled(args) {
|
138
143
|
return ___EmotionJSX(Calendar, _extends({}, args, {
|
@@ -140,11 +145,11 @@ export var Disabled = function Disabled(args) {
|
|
140
145
|
isDisabled: true
|
141
146
|
}));
|
142
147
|
};
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
}
|
148
|
+
export var ReadOnly = function ReadOnly(args) {
|
149
|
+
return ___EmotionJSX(Calendar, _extends({}, args, {
|
150
|
+
"aria-label": "calendar-component-readonly",
|
151
|
+
isReadOnly: true
|
152
|
+
}));
|
148
153
|
};
|
149
154
|
export var UnavailableDates = function UnavailableDates(args) {
|
150
155
|
var unavailableRanges = [['2022-07-29', '2022-08-05'], ['2022-08-15', '2022-08-20'], ['2022-08-25', '2022-08-26']];
|
@@ -160,12 +165,6 @@ export var UnavailableDates = function UnavailableDates(args) {
|
|
160
165
|
isDateUnavailable: isDateUnavailable
|
161
166
|
}));
|
162
167
|
};
|
163
|
-
UnavailableDates.parameters = {
|
164
|
-
design: {
|
165
|
-
type: 'figma',
|
166
|
-
url: FIGMA_LINKS.calendar.unavailableDates
|
167
|
-
}
|
168
|
-
};
|
169
168
|
export var MinimumDate = function MinimumDate(args) {
|
170
169
|
return ___EmotionJSX(Calendar, _extends({}, args, {
|
171
170
|
"aria-label": "calendar-component-min-date",
|
@@ -173,12 +172,6 @@ export var MinimumDate = function MinimumDate(args) {
|
|
173
172
|
defaultDate: "2022-09-14"
|
174
173
|
}));
|
175
174
|
};
|
176
|
-
MinimumDate.parameters = {
|
177
|
-
design: {
|
178
|
-
type: 'figma',
|
179
|
-
url: FIGMA_LINKS.calendar.minimumDate
|
180
|
-
}
|
181
|
-
};
|
182
175
|
export var MaximumDate = function MaximumDate(args) {
|
183
176
|
return ___EmotionJSX(Calendar, _extends({}, args, {
|
184
177
|
"aria-label": "calendar-component-max-date",
|
@@ -186,32 +179,9 @@ export var MaximumDate = function MaximumDate(args) {
|
|
186
179
|
defaultValue: "2022-10-05"
|
187
180
|
}));
|
188
181
|
};
|
189
|
-
MaximumDate.parameters = {
|
190
|
-
design: {
|
191
|
-
type: 'figma',
|
192
|
-
url: FIGMA_LINKS.calendar.maximumDate
|
193
|
-
}
|
194
|
-
};
|
195
182
|
export var Autofocus = function Autofocus(args) {
|
196
183
|
return ___EmotionJSX(Calendar, _extends({}, args, {
|
197
184
|
"aria-label": "calendar-component",
|
198
185
|
hasAutoFocus: true
|
199
186
|
}));
|
200
|
-
};
|
201
|
-
Autofocus.parameters = {
|
202
|
-
design: {
|
203
|
-
type: 'figma',
|
204
|
-
url: FIGMA_LINKS.calendar.autofocus
|
205
|
-
}
|
206
|
-
};
|
207
|
-
export var Controlled = function Controlled(args) {
|
208
|
-
var _useState = useState(null),
|
209
|
-
_useState2 = _slicedToArray(_useState, 2),
|
210
|
-
date = _useState2[0],
|
211
|
-
setDate = _useState2[1];
|
212
|
-
return ___EmotionJSX(Calendar, _extends({}, args, {
|
213
|
-
"aria-label": "calendar-component-controlled",
|
214
|
-
value: date,
|
215
|
-
onChange: setDate
|
216
|
-
}));
|
217
187
|
};
|
@@ -83,16 +83,17 @@ var defaultWithSectionsProps = {
|
|
83
83
|
items: itemsWithSections
|
84
84
|
};
|
85
85
|
var onSelectionChange = jest.fn();
|
86
|
-
export var
|
87
|
-
return ___EmotionJSX(OverlayProvider, null, ___EmotionJSX(EnvironmentBreadcrumb, _extends({}, defaultProps, props), function (item) {
|
86
|
+
export var getComponent = function getComponent(props) {
|
87
|
+
return render(___EmotionJSX(OverlayProvider, null, ___EmotionJSX(EnvironmentBreadcrumb, _extends({}, defaultProps, props), function (item) {
|
88
88
|
return ___EmotionJSX(Item, {
|
89
89
|
key: item.name,
|
90
90
|
"data-testid": item.name
|
91
91
|
}, item.name);
|
92
|
-
}));
|
92
|
+
})));
|
93
93
|
};
|
94
|
-
export var
|
95
|
-
|
94
|
+
export var getSectionsComponent = function getSectionsComponent() {
|
95
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
96
|
+
return render(___EmotionJSX(OverlayProvider, null, ___EmotionJSX(EnvironmentBreadcrumb, _extends({}, defaultWithSectionsProps, props), function (section) {
|
96
97
|
return (
|
97
98
|
// eslint-disable-next-line testing-library/no-node-access
|
98
99
|
___EmotionJSX(Section, {
|
@@ -108,14 +109,7 @@ export var renderSectionsComponent = function renderSectionsComponent(props) {
|
|
108
109
|
}, item.name);
|
109
110
|
})
|
110
111
|
);
|
111
|
-
}));
|
112
|
-
};
|
113
|
-
var getComponent = function getComponent(props) {
|
114
|
-
return render(renderComponent(props));
|
115
|
-
};
|
116
|
-
var getSectionsComponent = function getSectionsComponent() {
|
117
|
-
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
118
|
-
return render(renderSectionsComponent(props));
|
112
|
+
})));
|
119
113
|
};
|
120
114
|
beforeAll(function () {
|
121
115
|
jest.spyOn(window.HTMLElement.prototype, 'clientWidth', 'get').mockImplementation(function () {
|
@@ -36,13 +36,7 @@ export var FIGMA_LINKS = {
|
|
36
36
|
secondaryRightAligned: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=46080%3A788&mode=dev'
|
37
37
|
},
|
38
38
|
calendar: {
|
39
|
-
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=
|
40
|
-
defaultValue: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-14593&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
41
|
-
disabled: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-15106&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
42
|
-
unavailableDates: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-15681&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
43
|
-
minimumDate: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-16197&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
44
|
-
maximumDate: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-16454&mode=design&t=PX1Q47IuuVvOafDQ-4',
|
45
|
-
autofocus: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=46454-16768&mode=design&t=PX1Q47IuuVvOafDQ-4'
|
39
|
+
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=6373%3A25490&t=BoHXzVpQq9Lf7MaU-1'
|
46
40
|
},
|
47
41
|
callout: {
|
48
42
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=14289-33201&t=VgqEexa1CXAXfPpp-0'
|
package/package.json
CHANGED
@@ -1,10 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
var _universalComponentTest = require("../../utils/testUtils/universalComponentTest");
|
4
|
-
var _EnvironmentBreadcrumb = require("./EnvironmentBreadcrumb.test");
|
5
|
-
(0, _universalComponentTest.universalComponentTests)({
|
6
|
-
renderComponent: _EnvironmentBreadcrumb.renderComponent
|
7
|
-
});
|
8
|
-
(0, _universalComponentTest.universalComponentTests)({
|
9
|
-
renderComponent: _EnvironmentBreadcrumb.renderSectionsComponent
|
10
|
-
});
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import { universalComponentTests } from '../../utils/testUtils/universalComponentTest';
|
2
|
-
import { renderComponent, renderSectionsComponent } from './EnvironmentBreadcrumb.test';
|
3
|
-
universalComponentTests({
|
4
|
-
renderComponent: renderComponent
|
5
|
-
});
|
6
|
-
universalComponentTests({
|
7
|
-
renderComponent: renderSectionsComponent
|
8
|
-
});
|