@@ -2232,4 +2232,199 @@ describe("media queries", () => {
2232
2232
} ,
2233
2233
} ) ;
2234
2234
} ) ;
2235
+
2236
+ it ( "should support screen type" , ( ) => {
2237
+ expect (
2238
+ transform (
2239
+ `
2240
+ .foo {
2241
+ color: blue;
2242
+ }
2243
+ @media screen and (min-height: 50px) and (max-height: 150px) {
2244
+ .foo {
2245
+ color: red;
2246
+ }
2247
+ }
2248
+ @media screen and (min-height: 150px) and (max-height: 200px) {
2249
+ .foo {
2250
+ color: green;
2251
+ }
2252
+ }
2253
+ ` ,
2254
+ {
2255
+ parseMediaQueries : true ,
2256
+ } ,
2257
+ ) ,
2258
+ ) . toEqual ( {
2259
+ foo : { color : "blue" } ,
2260
+ "@media screen and (min-height: 50px) and (max-height: 150px)" : {
2261
+ foo : { color : "red" } ,
2262
+ } ,
2263
+ "@media screen and (min-height: 150px) and (max-height: 200px)" : {
2264
+ foo : { color : "green" } ,
2265
+ } ,
2266
+ } ) ;
2267
+ } ) ;
2268
+
2269
+ it ( "should support all type" , ( ) => {
2270
+ expect (
2271
+ transform (
2272
+ `
2273
+ .foo {
2274
+ color: blue;
2275
+ }
2276
+ @media all and (min-height: 50px) and (max-height: 150px) {
2277
+ .foo {
2278
+ color: red;
2279
+ }
2280
+ }
2281
+ @media all and (min-height: 150px) and (max-height: 200px) {
2282
+ .foo {
2283
+ color: green;
2284
+ }
2285
+ }
2286
+ ` ,
2287
+ {
2288
+ parseMediaQueries : true ,
2289
+ } ,
2290
+ ) ,
2291
+ ) . toEqual ( {
2292
+ foo : { color : "blue" } ,
2293
+ "@media all and (min-height: 50px) and (max-height: 150px)" : {
2294
+ foo : { color : "red" } ,
2295
+ } ,
2296
+ "@media all and (min-height: 150px) and (max-height: 200px)" : {
2297
+ foo : { color : "green" } ,
2298
+ } ,
2299
+ } ) ;
2300
+ } ) ;
2301
+
2302
+ it ( "should throw for invalid types" , ( ) => {
2303
+ expect ( ( ) =>
2304
+ transform (
2305
+ `
2306
+ .foo {
2307
+ color: blue;
2308
+ }
2309
+
2310
+ @media screens {
2311
+ .foo {
2312
+ color: red;
2313
+ }
2314
+ }
2315
+ ` ,
2316
+ {
2317
+ parseMediaQueries : true ,
2318
+ } ,
2319
+ ) ,
2320
+ ) . toThrow ( 'Failed to parse media query type "screens"' ) ;
2321
+ expect ( ( ) =>
2322
+ transform (
2323
+ `
2324
+ .foo {
2325
+ color: blue;
2326
+ }
2327
+ @media sdfgsdfg {
2328
+ .foo {
2329
+ color: red;
2330
+ }
2331
+ }
2332
+ ` ,
2333
+ {
2334
+ parseMediaQueries : true ,
2335
+ } ,
2336
+ ) ,
2337
+ ) . toThrow ( 'Failed to parse media query type "sdfgsdfg"' ) ;
2338
+ } ) ;
2339
+
2340
+ it ( "should throw for invalid features" , ( ) => {
2341
+ expect ( ( ) =>
2342
+ transform (
2343
+ `
2344
+ .foo {
2345
+ color: blue;
2346
+ }
2347
+ @media (min-heigh: 50px) and (max-height: 150px) {
2348
+ .foo {
2349
+ color: red;
2350
+ }
2351
+ }
2352
+ ` ,
2353
+ {
2354
+ parseMediaQueries : true ,
2355
+ } ,
2356
+ ) ,
2357
+ ) . toThrow ( 'Failed to parse media query feature "min-heigh"' ) ;
2358
+ expect ( ( ) =>
2359
+ transform (
2360
+ `
2361
+ .foo {
2362
+ color: blue;
2363
+ }
2364
+ @media (orientations: landscape) {
2365
+ .foo {
2366
+ color: red;
2367
+ }
2368
+ }
2369
+ ` ,
2370
+ {
2371
+ parseMediaQueries : true ,
2372
+ } ,
2373
+ ) ,
2374
+ ) . toThrow ( 'Failed to parse media query feature "orientations"' ) ;
2375
+ } ) ;
2376
+
2377
+ it ( "should throw for values without units" , ( ) => {
2378
+ expect ( ( ) =>
2379
+ transform (
2380
+ `
2381
+ .foo {
2382
+ color: blue;
2383
+ }
2384
+ @media (min-height: 50) and (max-height: 150px) {
2385
+ .foo {
2386
+ color: red;
2387
+ }
2388
+ }
2389
+ ` ,
2390
+ {
2391
+ parseMediaQueries : true ,
2392
+ } ,
2393
+ ) ,
2394
+ ) . toThrow ( 'Failed to parse media query expression "(min-height: 50)"' ) ;
2395
+ expect ( ( ) =>
2396
+ transform (
2397
+ `
2398
+ .foo {
2399
+ color: blue;
2400
+ }
2401
+ @media (min-height: 50px) and (max-height: 150) {
2402
+ .foo {
2403
+ color: red;
2404
+ }
2405
+ }
2406
+ ` ,
2407
+ {
2408
+ parseMediaQueries : true ,
2409
+ } ,
2410
+ ) ,
2411
+ ) . toThrow ( 'Failed to parse media query expression "(max-height: 150)"' ) ;
2412
+ expect ( ( ) =>
2413
+ transform (
2414
+ `
2415
+ .foo {
2416
+ color: blue;
2417
+ }
2418
+ @media (min-width) {
2419
+ .foo {
2420
+ color: red;
2421
+ }
2422
+ }
2423
+ ` ,
2424
+ {
2425
+ parseMediaQueries : true ,
2426
+ } ,
2427
+ ) ,
2428
+ ) . toThrow ( 'Failed to parse media query expression "(min-width)"' ) ;
2429
+ } ) ;
2235
2430
} ) ;
0 commit comments