File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55- BREAKING: Remove the ` $inspect ` option from assertions,
66 since Sass has improved comparisons and changed inspection.
77 [ #332 ] ( https://github.com/oddbird/true/pull/332 )
8- - NEW: Multiple ` contains-string() ` expectations can be used
9- in a single assertion.
8+ - NEW: Multiple ` contains() ` and ` contains -string()` expectations
9+ can be used in a single assertion.
1010- INTERNAL: Update dependencies
1111
1212** Migration** :
Original file line number Diff line number Diff line change 185185 }
186186 }
187187 }
188+
189+ @include it (' Can contain multiple/overlapping assertions' ) {
190+ @include assert {
191+ @include output {
192+ .example {
193+ width : 12em ;
194+ height : 1 lh;
195+ border : thin solid ;
196+ }
197+ }
198+
199+ @include contains { width : 12em ; }
200+ @include contains { height : 1 lh; }
201+ @include contains {
202+ height : 1 lh;
203+ border : thin solid ;
204+ }
205+ }
206+ }
188207 }
189208
190209 @include it (' Can be used with @at-root' ) {
You can’t perform that action at this time.
0 commit comments