summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/slow-cycle.html
blob: 3a42cf9e306d43ca6c865cbba0c5277439996073 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!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>