ladybird/Tests/LibWeb/Crash/JS/cyclic-async-module-a.mjs
caztanj e93f44112d LibJS: Do not verify cycle root's status is linked in CyclicModule
This VERIFY is both incorrect and redundant. The VERIFY at step 2
verifies the status when evaluate is called on m_cycle_root.
2025-10-22 11:54:56 +02:00

3 lines
108 B
JavaScript

import { foo } from "./cyclic-async-module-b.mjs";
await new Promise(resolve => setTimeout(resolve, 200));