@@ -29,7 +29,6 @@ for (const value of ALIGN_CONTENT_VALUES) {
29
29
) ;
30
30
}
31
31
32
- // Responsive align content
33
32
for ( const bp of BREAKPOINTS ) {
34
33
for ( const value of ALIGN_CONTENT_VALUES ) {
35
34
assert (
@@ -57,7 +56,6 @@ for (const value of ALIGN_ITEMS_VALUES) {
57
56
) ;
58
57
}
59
58
60
- // Responsive align items
61
59
for ( const bp of BREAKPOINTS ) {
62
60
for ( const value of ALIGN_ITEMS_VALUES ) {
63
61
assert (
@@ -86,7 +84,6 @@ for (const value of ALIGN_SELF_VALUES) {
86
84
) ;
87
85
}
88
86
89
- // Responsive align self
90
87
for ( const bp of BREAKPOINTS ) {
91
88
for ( const value of ALIGN_SELF_VALUES ) {
92
89
assert (
@@ -115,7 +112,6 @@ for (const value of JUSTIFY_CONTENT_VALUES) {
115
112
) ;
116
113
}
117
114
118
- // Responsive justify content
119
115
for ( const bp of BREAKPOINTS ) {
120
116
for ( const value of JUSTIFY_CONTENT_VALUES ) {
121
117
assert (
@@ -142,7 +138,6 @@ for (const value of FLEX_DIRECTION_VALUES) {
142
138
) ;
143
139
}
144
140
145
- // Responsive flex direction
146
141
for ( const bp of BREAKPOINTS ) {
147
142
for ( const value of FLEX_DIRECTION_VALUES ) {
148
143
assert (
@@ -174,15 +169,8 @@ for (const value of FLEX_WRAP_VALUES) {
174
169
) ;
175
170
}
176
171
177
- // Responsive flex wrap
178
172
for ( const bp of BREAKPOINTS ) {
179
173
for ( const value of FLEX_WRAP_VALUES ) {
180
- // TODO(FW-6697): remove assert for .ion-${bp}-${value} classes
181
- assert (
182
- css . includes ( `.ion-${ bp } -${ value } ` ) ,
183
- `CSS should include .ion-${ bp } -${ value } class`
184
- ) ;
185
-
186
174
assert (
187
175
css . includes ( `.ion-flex-${ bp } -${ value } ` ) ,
188
176
`CSS should include .ion-flex-${ bp } -${ value } class`
@@ -207,7 +195,6 @@ for (const value of FLEX_FILL_VALUES) {
207
195
) ;
208
196
}
209
197
210
- // Responsive flex fill
211
198
for ( const bp of BREAKPOINTS ) {
212
199
for ( const value of FLEX_FILL_VALUES ) {
213
200
assert (
@@ -237,7 +224,6 @@ for (const value of FLEX_GROW_SHRINK_VALUES) {
237
224
) ;
238
225
}
239
226
240
- // Responsive flex grow and shrink
241
227
for ( const bp of BREAKPOINTS ) {
242
228
for ( const value of FLEX_GROW_SHRINK_VALUES ) {
243
229
assert (
@@ -272,7 +258,6 @@ for (let i = 0; i <= 12; i++) {
272
258
) ;
273
259
}
274
260
275
- // Responsive flex order
276
261
for ( const bp of BREAKPOINTS ) {
277
262
assert (
278
263
css . includes ( `.ion-order-${ bp } -first` ) ,
0 commit comments