diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-06-04 23:03:56 +1000 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-04 09:03:56 -0400 |
commit | a71305b4febc3d8db95d3d144ae3a64c023718f0 (patch) | |
tree | f0dcc6017f62380b02a08d800503fbf7242fbe72 /tests/013_dynamic_import.ts | |
parent | 60d452264198adb3da4820236cf8ea35d33486cd (diff) |
Handle compiler diagnostics in Rust (#2445)
Diffstat (limited to 'tests/013_dynamic_import.ts')
-rw-r--r-- | tests/013_dynamic_import.ts | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/013_dynamic_import.ts b/tests/013_dynamic_import.ts index 20dc508db..6bbce3132 100644 --- a/tests/013_dynamic_import.ts +++ b/tests/013_dynamic_import.ts @@ -1,9 +1,7 @@ (async (): Promise<void> => { - const { - returnsHi, - returnsFoo2, - printHello3 - } = await import("./subdir/mod1.ts"); + const { returnsHi, returnsFoo2, printHello3 } = await import( + "./subdir/mod1.ts" + ); printHello3(); |