@@ -13412,6 +13412,48 @@ Array [
13412
13412
13413
13413
exports[`"modules" option should work with the "auto" by default for icss: warnings 1`] = `Array []`;
13414
13414
13415
+ exports[`"modules" option should work with the "auto" by default when CSS file is entrypoint: entry 1`] = `
13416
+ "// Imports
13417
+ import ___CSS_LOADER_API_IMPORT___ from \\"../../../../src/runtime/api.js\\";
13418
+ var ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(function(i){return i[1]});
13419
+ // Module
13420
+ ___CSS_LOADER_EXPORT___.push([module.id, \\".class {\\\\n color: red;\\\\n}\\\\n\\", \\"\\"]);
13421
+ // Exports
13422
+ export default ___CSS_LOADER_EXPORT___;
13423
+ "
13424
+ `;
13425
+
13426
+ exports[`"modules" option should work with the "auto" by default when CSS file is entrypoint: errors 1`] = `Array []`;
13427
+
13428
+ exports[`"modules" option should work with the "auto" by default when CSS file is entrypoint: module 1`] = `
13429
+ "// Imports
13430
+ import ___CSS_LOADER_API_IMPORT___ from \\"../../../../src/runtime/api.js\\";
13431
+ var ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(function(i){return i[1]});
13432
+ // Module
13433
+ ___CSS_LOADER_EXPORT___.push([module.id, \\"._wr0eVpMbaGr94MKhByE {\\\\n color: red;\\\\n}\\\\n\\", \\"\\"]);
13434
+ // Exports
13435
+ ___CSS_LOADER_EXPORT___.locals = {
13436
+ \\"relative\\": \\"_wr0eVpMbaGr94MKhByE\\"
13437
+ };
13438
+ export default ___CSS_LOADER_EXPORT___;
13439
+ "
13440
+ `;
13441
+
13442
+ exports[`"modules" option should work with the "auto" by default when CSS file is entrypoint: result 1`] = `
13443
+ Array [
13444
+ Array [
13445
+ "./modules/mode/relative.module.css",
13446
+ "._wr0eVpMbaGr94MKhByE {
13447
+ color: red;
13448
+ }
13449
+ ",
13450
+ "",
13451
+ ],
13452
+ ]
13453
+ `;
13454
+
13455
+ exports[`"modules" option should work with the "auto" by default when CSS file is entrypoint: warnings 1`] = `Array []`;
13456
+
13415
13457
exports[`"modules" option should work with the "auto" by default with "modules" filename: errors 1`] = `Array []`;
13416
13458
13417
13459
exports[`"modules" option should work with the "auto" by default with "modules" filename: module 1`] = `
0 commit comments