blob: 3a42cf9e306d43ca6c865cbba0c5277439996073 [file] [log] [blame]
<!DOCTYPE html>
<title>Cyclic graph with slow imports</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type="module">
import { loaded } from "./slow-module-graph-a.js";
test(() => {
assert_true(loaded);
}, "module graph with cycles load even if part of the graph loads slow");
</script>