We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6d292 commit 18d35bcCopy full SHA for 18d35bc
1 file changed
test/configCases/side-effects/deep-import-chain/index.js
@@ -1,7 +1,7 @@
1
import { value, config } from "./src/chain/mod-0.js";
2
3
-it("should compile a deep cyclic chain of side-effect-free imports without overflowing the stack", () => {
+it("should compile a deep linear chain of side-effect-free imports without overflowing the stack", () => {
4
expect(config.id).toBe(0);
5
- // value is a chain of nested arrays — innermost element is from the cycle close
+ // value is a chain of nested arrays — innermost element is from the terminal module
6
expect(Array.isArray(value)).toBe(true);
7
});
0 commit comments