You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exports[`source-map-loader should process css sourceMap: warnings 1`] =`
117
132
Array [
118
133
"ModuleWarning: Module Warning (from \`replaced original path\`):
119
-
Absolute 'webpack:///./src/app/app.scss' URL is not supported",
134
+
Failed to parse source map: \\"webpack:///./src/app/app.scss\\" URL is not supported",
120
135
]
121
136
`;
122
137
123
138
exports[`source-map-loader should process css sourceMap: warnings 2`] =`
124
139
Array [
125
140
"ModuleWarning: Module Warning (from \`replaced original path\`):
126
-
Cannot read '/test/fixtures/unresolved-file.js' file: Error: ENOENT: no such file or directory, open '/test/fixtures/unresolved-file.js'",
141
+
Failed to parse source map from '/test/fixtures/unresolved-file.js' file: Error: ENOENT: no such file or directory, open '/test/fixtures/unresolved-file.js'",
127
142
]
128
143
`;
129
144
@@ -255,7 +270,7 @@ exports[`source-map-loader should process protocol-relative-url-path: errors 1`]
255
270
exports[`source-map-loader should process protocol-relative-url-path: warnings 1`] =`
256
271
Array [
257
272
"ModuleWarning: Module Warning (from \`replaced original path\`):
258
-
Scheme-relative '//sampledomain.com/external-source-map2.map' URL is not supported",
273
+
Failed to parse source map: \\"//sampledomain.com/external-source-map2.map\\" URL is not supported",
exports[`source-map-loader should support mixed paths in sources without sourceRoot: warnings 1`] =`
520
535
Array [
521
536
"ModuleWarning: Module Warning (from \`replaced original path\`):
522
-
Absolute 'ftp://path-to-map.com' URL is not supported",
537
+
Failed to parse source map: \\"ftp://path-to-map.com\\" URL is not supported",
523
538
"ModuleWarning: Module Warning (from \`replaced original path\`):
524
-
Absolute 'http://path-to-map.com' URL is not supported",
539
+
Failed to parse source map: \\"http://path-to-map.com\\" URL is not supported",
525
540
]
526
541
`;
527
542
@@ -584,7 +599,7 @@ exports[`source-map-loader should warn on invalid SourceMap: errors 1`] = `Array
584
599
exports[`source-map-loader should warn on invalid SourceMap: warnings 1`] =`
585
600
Array [
586
601
"ModuleWarning: Module Warning (from \`replaced original path\`):
587
-
Cannot parse source map from '/test/fixtures/invalid-source-map.map': SyntaxError: Unexpected string in JSON at position 102",
602
+
Failed to parse source map from '/test/fixtures/invalid-source-map.map': SyntaxError: Unexpected string in JSON at position 102",
588
603
]
589
604
`;
590
605
@@ -599,7 +614,7 @@ exports[`source-map-loader should warn on invalid base64 SourceMap: errors 1`] =
599
614
exports[`source-map-loader should warn on invalid base64 SourceMap: warnings 1`] =`
600
615
Array [
601
616
"ModuleWarning: Module Warning (from \`replaced original path\`):
602
-
Can not parse inline source map: data:application/source-map;base64,invalid/base64=",
617
+
Failed to parse source map from \\"data\\" URL: data:application/source-map;base64,invalid/base64=",
603
618
]
604
619
`;
605
620
@@ -614,7 +629,7 @@ exports[`source-map-loader should warn on missing SourceMap: errors 1`] = `Array
614
629
exports[`source-map-loader should warn on missing SourceMap: warnings 1`] =`
615
630
Array [
616
631
"ModuleWarning: Module Warning (from \`replaced original path\`):
617
-
Cannot read '/test/fixtures/missing-source-map.map' file: Error: ENOENT: no such file or directory, open '/test/fixtures/missing-source-map.map'",
632
+
Failed to parse source map from '/test/fixtures/missing-source-map.map' file: Error: ENOENT: no such file or directory, open '/test/fixtures/missing-source-map.map'",
618
633
]
619
634
`;
620
635
@@ -639,6 +654,6 @@ Object {
639
654
exports[`source-map-loader should warn on missing source file: warnings 1`] =`
640
655
Array [
641
656
"ModuleWarning: Module Warning (from \`replaced original path\`):
642
-
Cannot read '/test/fixtures/missing-source-map2.txt' file: Error: ENOENT: no such file or directory, open '/test/fixtures/missing-source-map2.txt'",
657
+
Failed to parse source map from '/test/fixtures/missing-source-map2.txt' file: Error: ENOENT: no such file or directory, open '/test/fixtures/missing-source-map2.txt'",
0 commit comments