We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c602dcf commit 56c7c82Copy full SHA for 56c7c82
test/test.js
@@ -20,7 +20,6 @@ test('it should return body color and min-width width fro decl', t => {
20
21
test('it should retunr width for at rule @media', t => {
22
const expected = '@media (min-width: 1280px) {body {overflow-x: hidden}}';
23
- const value = '@media (min-width: map-get((xxs: 0,xs: 576px,sm: 768px,md: 992px,lg: 1280px,xl: 1360px,xxl: 1600px) !default, lg))) {body {overflow-x: hidden}}';
+ const value = '@media (min-width: map-get((xxs: 0,xs: 576px,sm: 768px,md: 992px,lg: 1280px,xl: 1360px,xxl: 1600px) !default, lg)) {body {overflow-x: hidden}}';
24
t.is(processing(value), expected);
25
});
26
-
0 commit comments