|
1 | 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
|
2 | 2 |
|
| 3 | +exports[`loader should emit good formatted warning ('dart-sass', 'legacy' API, 'sass' syntax): css 1`] = `""`; |
| 4 | + |
| 5 | +exports[`loader should emit good formatted warning ('dart-sass', 'legacy' API, 'sass' syntax): errors 1`] = `[]`; |
| 6 | + |
| 7 | +exports[`loader should emit good formatted warning ('dart-sass', 'legacy' API, 'sass' syntax): logs 1`] = `[]`; |
| 8 | + |
| 9 | +exports[`loader should emit good formatted warning ('dart-sass', 'legacy' API, 'sass' syntax): warnings 1`] = ` |
| 10 | +[ |
| 11 | + "ModuleWarning: Module Warning (from ../src/cjs.js): |
| 12 | +Warning on line 5, column 3 of file:///test/sass/broken.sass:5:3: |
| 13 | +This selector doesn't have any properties and won't be rendered. |
| 14 | +
|
| 15 | +5 | asdf |
| 16 | +", |
| 17 | +] |
| 18 | +`; |
| 19 | + |
| 20 | +exports[`loader should emit good formatted warning ('dart-sass', 'modern' API, 'sass' syntax): css 1`] = `""`; |
| 21 | + |
| 22 | +exports[`loader should emit good formatted warning ('dart-sass', 'modern' API, 'sass' syntax): errors 1`] = `[]`; |
| 23 | + |
| 24 | +exports[`loader should emit good formatted warning ('dart-sass', 'modern' API, 'sass' syntax): logs 1`] = `[]`; |
| 25 | + |
| 26 | +exports[`loader should emit good formatted warning ('dart-sass', 'modern' API, 'sass' syntax): warnings 1`] = ` |
| 27 | +[ |
| 28 | + "ModuleWarning: Module Warning (from ../src/cjs.js): |
| 29 | +Warning on line 5, column 3 of file:///test/sass/broken.sass:5:3: |
| 30 | +This selector doesn't have any properties and won't be rendered. |
| 31 | +
|
| 32 | +5 | asdf |
| 33 | +", |
| 34 | +] |
| 35 | +`; |
| 36 | + |
| 37 | +exports[`loader should emit good formatted warning ('sass-embedded', 'legacy' API, 'sass' syntax): css 1`] = `""`; |
| 38 | + |
| 39 | +exports[`loader should emit good formatted warning ('sass-embedded', 'legacy' API, 'sass' syntax): errors 1`] = `[]`; |
| 40 | + |
| 41 | +exports[`loader should emit good formatted warning ('sass-embedded', 'legacy' API, 'sass' syntax): logs 1`] = `[]`; |
| 42 | + |
| 43 | +exports[`loader should emit good formatted warning ('sass-embedded', 'legacy' API, 'sass' syntax): warnings 1`] = ` |
| 44 | +[ |
| 45 | + "ModuleWarning: Module Warning (from ../src/cjs.js): |
| 46 | +Warning on line 5, column 3 of file:///test/sass/broken.sass:5:3: |
| 47 | +This selector doesn't have any properties and won't be rendered. |
| 48 | +
|
| 49 | +5 | asdf |
| 50 | +", |
| 51 | +] |
| 52 | +`; |
| 53 | + |
| 54 | +exports[`loader should emit good formatted warning ('sass-embedded', 'modern' API, 'sass' syntax): css 1`] = `""`; |
| 55 | + |
| 56 | +exports[`loader should emit good formatted warning ('sass-embedded', 'modern' API, 'sass' syntax): errors 1`] = `[]`; |
| 57 | + |
| 58 | +exports[`loader should emit good formatted warning ('sass-embedded', 'modern' API, 'sass' syntax): logs 1`] = `[]`; |
| 59 | + |
| 60 | +exports[`loader should emit good formatted warning ('sass-embedded', 'modern' API, 'sass' syntax): warnings 1`] = ` |
| 61 | +[ |
| 62 | + "ModuleWarning: Module Warning (from ../src/cjs.js): |
| 63 | +Warning on line 5, column 3 of file:///test/sass/broken.sass:5:3: |
| 64 | +This selector doesn't have any properties and won't be rendered. |
| 65 | +
|
| 66 | +5 | asdf |
| 67 | +", |
| 68 | +] |
| 69 | +`; |
| 70 | + |
3 | 71 | exports[`loader should emit warning by default ('dart-sass', 'legacy' API, 'sass' syntax): css 1`] = `
|
4 | 72 | "a {
|
5 | 73 | color: red;
|
|
0 commit comments