@@ -17,6 +17,16 @@ export default classes;
1717
1818exports [` utils / cssSnapshots with file 'empty.module.less' getClasses should return an object matching expected CSS 1` ] = ` Object { } ` ;
1919
20+ exports [` utils / cssSnapshots with file 'empty.module.sass' createExports should create an exports file 1` ] = `
21+ "declare const classes: {
22+
23+ } ;
24+ export default classes;
25+ "
26+ ` ;
27+
28+ exports [` utils / cssSnapshots with file 'empty.module.sass' getClasses should return an object matching expected CSS 1` ] = ` Object { } ` ;
29+
2030exports [` utils / cssSnapshots with file 'empty.module.scss' createExports should create an exports file 1` ] = `
2131"declare const classes: {
2232
@@ -159,6 +169,58 @@ Object {
159169}
160170` ;
161171
172+ exports [` utils / cssSnapshots with file 'test.module.sass' createExports should create an exports file 1` ] = `
173+ "declare const classes: {
174+ ' local-class-inside-global' : string ;
175+ ' local-class' : string ;
176+ ' local-class-2' : string ;
177+ ' local-class-inside-local' : string ;
178+ ' reserved-words' : string ;
179+ ' default' : string ;
180+ ' const' : string ;
181+ ' nested-class-parent' : string ;
182+ ' child-class' : string ;
183+ ' nested-class-parent--extended' : string ;
184+ ' section-1' : string ;
185+ ' section-2' : string ;
186+ ' section-3' : string ;
187+ ' section-4' : string ;
188+ ' section-5' : string ;
189+ ' section-6' : string ;
190+ ' section-7' : string ;
191+ ' section-8' : string ;
192+ ' section-9' : string ;
193+ ' class-with-mixin' : string ;
194+ } ;
195+ export default classes;
196+ "
197+ ` ;
198+
199+ exports [` utils / cssSnapshots with file 'test.module.sass' getClasses should return an object matching expected CSS 1` ] = `
200+ Object {
201+ " child-class" : " test-module__child-class---2vfhc" ,
202+ " class-with-mixin" : " test-module__class-with-mixin---3zUq-" ,
203+ " const" : " test-module__const---39o_j" ,
204+ " default" : " test-module__default---h-tcC" ,
205+ " local-class" : " test-module__local-class---1yStp" ,
206+ " local-class-2" : " test-module__local-class-2---3xCgt" ,
207+ " local-class-inside-global" : " test-module__local-class-inside-global---Mznd5" ,
208+ " local-class-inside-local" : " test-module__local-class-inside-local---1z2Qf" ,
209+ " nested-class-parent" : " test-module__nested-class-parent---3oyeq" ,
210+ " nested-class-parent--extended" : " test-module__nested-class-parent--extended---cjRbg" ,
211+ " reserved-words" : " test-module__reserved-words---3hGie" ,
212+ " section-1" : " test-module__section-1---2QkaE" ,
213+ " section-2" : " test-module__section-2---23KHs" ,
214+ " section-3" : " test-module__section-3---2BttW" ,
215+ " section-4" : " test-module__section-4---1TrSo" ,
216+ " section-5" : " test-module__section-5---1PIYZ" ,
217+ " section-6" : " test-module__section-6---tbEch" ,
218+ " section-7" : " test-module__section-7---i7uWX" ,
219+ " section-8" : " test-module__section-8---1jfNT" ,
220+ " section-9" : " test-module__section-9---1akFT" ,
221+ }
222+ ` ;
223+
162224exports [` utils / cssSnapshots with file 'test.module.scss' createExports should create an exports file 1` ] = `
163225"declare const classes: {
164226' local-class-inside-global' : string ;
0 commit comments