Skip to content

Commit 90dc7f1

Browse files
test: circular (#921)
1 parent f403a4e commit 90dc7f1

6 files changed

+82
-0
lines changed

test/__snapshots__/loader.test.js.snap

+54
Original file line numberDiff line numberDiff line change
@@ -1140,6 +1140,60 @@ exports[`loader should throw an error on ambiguous import (only on "dart-sass")
11401140

11411141
exports[`loader should throw an error on ambiguous import (only on "dart-sass") (node-sass) (scss): warnings 1`] = `Array []`;
11421142

1143+
exports[`loader should throw an error on circular import (dart-sass) (sass): errors 1`] = `
1144+
Array [
1145+
"ModuleBuildError: Module build failed (from ../src/cjs.js):
1146+
SassError: This file is already being loaded.",
1147+
]
1148+
`;
1149+
1150+
exports[`loader should throw an error on circular import (dart-sass) (sass): warnings 1`] = `Array []`;
1151+
1152+
exports[`loader should throw an error on circular import (dart-sass) (scss): errors 1`] = `
1153+
Array [
1154+
"ModuleBuildError: Module build failed (from ../src/cjs.js):
1155+
SassError: This file is already being loaded.",
1156+
]
1157+
`;
1158+
1159+
exports[`loader should throw an error on circular import (dart-sass) (scss): warnings 1`] = `Array []`;
1160+
1161+
exports[`loader should throw an error on circular import (node-sass) (sass): errors 1`] = `
1162+
Array [
1163+
"ModuleBuildError: Module build failed (from ../src/cjs.js):
1164+
SassError: An @import loop has been found:",
1165+
]
1166+
`;
1167+
1168+
exports[`loader should throw an error on circular import (node-sass) (sass): warnings 1`] = `Array []`;
1169+
1170+
exports[`loader should throw an error on circular import (node-sass) (scss): errors 1`] = `
1171+
Array [
1172+
"ModuleBuildError: Module build failed (from ../src/cjs.js):
1173+
SassError: An @import loop has been found:",
1174+
]
1175+
`;
1176+
1177+
exports[`loader should throw an error on circular import (node-sass) (scss): warnings 1`] = `Array []`;
1178+
1179+
exports[`loader should throw an error on circular use (dart-sass) (sass): errors 1`] = `
1180+
Array [
1181+
"ModuleBuildError: Module build failed (from ../src/cjs.js):
1182+
SassError: Module loop: this module is already being loaded.",
1183+
]
1184+
`;
1185+
1186+
exports[`loader should throw an error on circular use (dart-sass) (sass): warnings 1`] = `Array []`;
1187+
1188+
exports[`loader should throw an error on circular use (dart-sass) (scss): errors 1`] = `
1189+
Array [
1190+
"ModuleBuildError: Module build failed (from ../src/cjs.js):
1191+
SassError: This file is already being loaded.",
1192+
]
1193+
`;
1194+
1195+
exports[`loader should throw an error on circular use (dart-sass) (scss): warnings 1`] = `Array []`;
1196+
11431197
exports[`loader should throw an error with a explicit file and a file does not exist (dart-sass) (sass): errors 1`] = `
11441198
Array [
11451199
"ModuleBuildError: Module build failed (from ../src/cjs.js):

test/loader.test.js

+24
Original file line numberDiff line numberDiff line change
@@ -997,6 +997,18 @@ describe("loader", () => {
997997
expect(getErrors(stats)).toMatchSnapshot("errors");
998998
});
999999

1000+
it(`should throw an error on circular import (${implementationName}) (${syntax})`, async () => {
1001+
const testId = getTestId("import-circular", syntax);
1002+
const options = {
1003+
implementation: getImplementationByName(implementationName),
1004+
};
1005+
const compiler = getCompiler(testId, { loader: { options } });
1006+
const stats = await compile(compiler);
1007+
1008+
expect(getWarnings(stats)).toMatchSnapshot("warnings");
1009+
expect(getErrors(stats)).toMatchSnapshot("errors");
1010+
});
1011+
10001012
if (implementation === dartSass) {
10011013
it(`should output an understandable error with a problem in "@use" (${implementationName}) (${syntax})`, async () => {
10021014
const testId = getTestId("error-use", syntax);
@@ -1509,6 +1521,18 @@ describe("loader", () => {
15091521
expect(getWarnings(stats)).toMatchSnapshot("warnings");
15101522
expect(getErrors(stats)).toMatchSnapshot("errors");
15111523
});
1524+
1525+
it(`should throw an error on circular use (${implementationName}) (${syntax})`, async () => {
1526+
const testId = getTestId("use-circular", syntax);
1527+
const options = {
1528+
implementation: getImplementationByName(implementationName),
1529+
};
1530+
const compiler = getCompiler(testId, { loader: { options } });
1531+
const stats = await compile(compiler);
1532+
1533+
expect(getWarnings(stats)).toMatchSnapshot("warnings");
1534+
expect(getErrors(stats)).toMatchSnapshot("errors");
1535+
});
15121536
}
15131537
});
15141538
});

test/sass/import-circular.sass

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'import-circular'

test/sass/use-circular.sass

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@use 'use-circular'

test/scss/import-circular.scss

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'import-circular';

test/scss/use-circular.scss

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'use-circular';

0 commit comments

Comments
 (0)