Skip to content

Commit 56c7c82

Browse files
committed
test: fix test
1 parent c602dcf commit 56c7c82

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/test.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ test('it should return body color and min-width width fro decl', t => {
2020

2121
test('it should retunr width for at rule @media', t => {
2222
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}}';
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}}';
2424
t.is(processing(value), expected);
2525
});
26-

0 commit comments

Comments
 (0)