Skip to content

Commit e884625

Browse files
committed
fix: Prettier
1 parent 4c41714 commit e884625

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/index.spec.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test(`simple #1. mobile-first`, () => {
1717
'screen and (width > 640px)',
1818
'screen and (width >= 1280px)',
1919
'screen and (width > 768px)',
20-
'screen and (width < 1280px)',
20+
'screen and (width < 1280px)'
2121
];
2222

2323
const expectedOrder = [
@@ -36,7 +36,7 @@ test(`simple #1. mobile-first`, () => {
3636
'screen and (max-width: 768px)',
3737
'screen and (width <= 768px)',
3838
'screen and (max-width: 640px)',
39-
'screen and (width < 640px)',
39+
'screen and (width < 640px)'
4040
];
4141

4242
const expected = expectedOrder.join('\n');
@@ -62,7 +62,7 @@ test(`simple #1. desktop-first`, () => {
6262
'screen and (width > 640px)',
6363
'screen and (width >= 1280px)',
6464
'screen and (width >= 768px)',
65-
'screen and (width <= 1280px)',
65+
'screen and (width <= 1280px)'
6666
];
6767

6868
const expectedOrder = [
@@ -81,7 +81,7 @@ test(`simple #1. desktop-first`, () => {
8181
'screen and (width > 980px)',
8282
'screen and (min-width: 980px)',
8383
'screen and (width >= 1280px)',
84-
'screen and (min-width: 1280px)',
84+
'screen and (min-width: 1280px)'
8585
];
8686

8787
const expected = expectedOrder.join('\n');
@@ -99,7 +99,7 @@ test(`simple #2. mobile-first`, () => {
9999
'screen and (width < 640px)',
100100
'screen and (width < 640px)',
101101
'screen and (width > 1280px)',
102-
'screen and (width < 640px)',
102+
'screen and (width < 640px)'
103103
];
104104

105105
const expectedOrder = [
@@ -110,7 +110,7 @@ test(`simple #2. mobile-first`, () => {
110110
'screen and (max-width: 640px)',
111111
'screen and (width < 640px)',
112112
'screen and (width < 640px)',
113-
'screen and (width < 640px)',
113+
'screen and (width < 640px)'
114114
];
115115

116116
const expected = expectedOrder.join('\n');
@@ -128,7 +128,7 @@ test(`simple #2. desktop-first`, () => {
128128
'screen and (width < 640px)',
129129
'screen and (width < 640px)',
130130
'screen and (width > 1280px)',
131-
'screen and (width < 640px)',
131+
'screen and (width < 640px)'
132132
];
133133

134134
const expectedOrder = [
@@ -139,7 +139,7 @@ test(`simple #2. desktop-first`, () => {
139139
'screen and (max-width: 640px)',
140140
'screen and (max-width: 640px)',
141141
'screen and (width > 1280px)',
142-
'screen and (min-width: 1280px)',
142+
'screen and (min-width: 1280px)'
143143
];
144144

145145
const expected = expectedOrder.join('\n');
@@ -153,14 +153,14 @@ test(`simple #3. mobile-first`, () => {
153153
'screen and (min-width: 640px)',
154154
'screen and (min-width: 0)',
155155
'screen and (width > 640px)',
156-
'screen and (width > 0)',
156+
'screen and (width > 0)'
157157
];
158158

159159
const expectedOrder = [
160160
'screen and (min-width: 0)',
161161
'screen and (width > 0)',
162162
'screen and (min-width: 640px)',
163-
'screen and (width > 640px)',
163+
'screen and (width > 640px)'
164164
];
165165

166166
const expected = expectedOrder.join('\n');

0 commit comments

Comments
 (0)