summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2020-05-08 03:39:00 +0900
committerGitHub <noreply@github.com>2020-05-07 14:39:00 -0400
commit93cf3bd5341d5985201ea0905280082d5a3310f9 (patch)
tree1eac1afa8813e00cb47b0051b73c987889b086d2 /cli/tests
parent9a8d94842044c5d91ce8ac09ed96c0e184d842b2 (diff)
feat: format deno bundle output (#5139)
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/bundle.test.out14
1 files changed, 9 insertions, 5 deletions
diff --git a/cli/tests/bundle.test.out b/cli/tests/bundle.test.out
index b286dad48..c3e12e8a9 100644
--- a/cli/tests/bundle.test.out
+++ b/cli/tests/bundle.test.out
@@ -6,13 +6,17 @@ let System, __instantiateAsync, __instantiate;
})();
System.register("print_hello", [], function (exports_1, context_1) {
-[WILDCARD]
-});
-System.register("subdir2/mod2", ["print_hello"], function (exports_2, context_2) {
-[WILDCARD]
+ [WILDCARD]
});
+System.register(
+ "subdir2/mod2",
+ ["print_hello"],
+ function (exports_2, context_2) {
+ [WILDCARD]
+ },
+);
System.register("mod1", ["subdir2/mod2"], function (exports_3, context_3) {
-[WILDCARD]
+ [WILDCARD]
});
const __exp = __instantiate("mod1");