@@ -6,7 +6,7 @@ describe('CSS Modules', () => {
6
6
const parse = createParser ( {
7
7
modules : [ 'css-position-1' ]
8
8
} ) ;
9
-
9
+
10
10
expect ( parse ( ':static' ) ) . toEqual (
11
11
ast . selector ( {
12
12
rules : [
@@ -16,7 +16,7 @@ describe('CSS Modules', () => {
16
16
]
17
17
} )
18
18
) ;
19
-
19
+
20
20
expect ( parse ( ':relative' ) ) . toEqual (
21
21
ast . selector ( {
22
22
rules : [
@@ -26,7 +26,7 @@ describe('CSS Modules', () => {
26
26
]
27
27
} )
28
28
) ;
29
-
29
+
30
30
expect ( parse ( ':absolute' ) ) . toEqual (
31
31
ast . selector ( {
32
32
rules : [
@@ -36,7 +36,7 @@ describe('CSS Modules', () => {
36
36
]
37
37
} )
38
38
) ;
39
-
39
+
40
40
// Should reject fixed as it's not in position-1
41
41
const strictParse = createParser ( {
42
42
modules : [ 'css-position-1' ] ,
@@ -46,17 +46,17 @@ describe('CSS Modules', () => {
46
46
}
47
47
}
48
48
} ) ;
49
-
49
+
50
50
expect ( ( ) => strictParse ( ':fixed' ) ) . toThrow ( 'Unknown pseudo-class: "fixed".' ) ;
51
51
} ) ;
52
52
} ) ;
53
-
53
+
54
54
describe ( 'css-position-2' , ( ) => {
55
55
it ( 'should parse position-2 pseudo-classes when module is enabled' , ( ) => {
56
56
const parse = createParser ( {
57
57
modules : [ 'css-position-2' ]
58
58
} ) ;
59
-
59
+
60
60
// Position-2 adds fixed
61
61
expect ( parse ( ':fixed' ) ) . toEqual (
62
62
ast . selector ( {
@@ -67,7 +67,7 @@ describe('CSS Modules', () => {
67
67
]
68
68
} )
69
69
) ;
70
-
70
+
71
71
// Should reject sticky as it's not in position-2
72
72
const strictParse = createParser ( {
73
73
modules : [ 'css-position-2' ] ,
@@ -77,11 +77,11 @@ describe('CSS Modules', () => {
77
77
}
78
78
}
79
79
} ) ;
80
-
80
+
81
81
expect ( ( ) => strictParse ( ':sticky' ) ) . toThrow ( 'Unknown pseudo-class: "sticky".' ) ;
82
82
} ) ;
83
83
} ) ;
84
-
84
+
85
85
describe ( 'css-position-3' , ( ) => {
86
86
it ( 'should parse position pseudo-classes when module is enabled' , ( ) => {
87
87
const parse = createParser ( {
0 commit comments