diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-07-05 17:59:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 18:59:49 +0200 |
commit | 060dd3ae82caf7cab57dfb40a295028887ab70bb (patch) | |
tree | 708125035743ae6f5c259226ae7f3126e956a529 /cli/tests/top_level_await_nested/main.js | |
parent | 407de8b8347bae165e60b9ccf0bce8050ba861fa (diff) |
fix(core): Delay deadlock detection for dynamic imports (#11282)
Diffstat (limited to 'cli/tests/top_level_await_nested/main.js')
-rw-r--r-- | cli/tests/top_level_await_nested/main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/top_level_await_nested/main.js b/cli/tests/top_level_await_nested/main.js new file mode 100644 index 000000000..ed46a4717 --- /dev/null +++ b/cli/tests/top_level_await_nested/main.js @@ -0,0 +1,3 @@ +console.log(1); +await import("./a.js"); +console.log(5); |