-
Notifications
You must be signed in to change notification settings - Fork 685
Expand file tree
/
Copy pathlib-css.test.ts.snap
More file actions
37 lines (32 loc) · 971 Bytes
/
lib-css.test.ts.snap
File metadata and controls
37 lines (32 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`SASS No Shims (doNotTrimOriginalFileExtension) styles.module.scss: files 1`] = `
Array [
"styles.module.scss.css",
]
`;
exports[`SASS No Shims (doNotTrimOriginalFileExtension) styles.module.scss: styles.module.scss.css 1`] = `
"/**
* Test SCSS module for verifying doNotTrimOriginalFileExtension output.
* Expected output: styles.module.scss.css (not styles.module.css)
*/
.label {
color: royalblue;
}
.container {
padding: 16px;
}"
`;
exports[`SASS No Shims (doNotTrimOriginalFileExtension) stylesGlobal.global.scss: files 1`] = `
Array [
"stylesGlobal.global.scss.css",
]
`;
exports[`SASS No Shims (doNotTrimOriginalFileExtension) stylesGlobal.global.scss: stylesGlobal.global.scss.css 1`] = `
"/**
* Test non-module SCSS for verifying doNotTrimOriginalFileExtension output.
* Expected output: stylesGlobal.global.scss.css (not stylesGlobal.global.css)
*/
.globalWrapper {
font-size: 16px;
}"
`;