diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /cli/tests/compiler_api_test.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'cli/tests/compiler_api_test.ts')
-rw-r--r-- | cli/tests/compiler_api_test.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/tests/compiler_api_test.ts b/cli/tests/compiler_api_test.ts index 274f1b98d..7ff9ebc2b 100644 --- a/cli/tests/compiler_api_test.ts +++ b/cli/tests/compiler_api_test.ts @@ -43,7 +43,7 @@ Deno.test({ { module: "amd", sourceMap: false, - } + }, ); assert(diagnostics == null); assert(actual); @@ -63,7 +63,7 @@ Deno.test({ }, { lib: ["dom", "es2018", "deno.ns"], - } + }, ); assert(diagnostics == null); assert(actual); @@ -81,7 +81,7 @@ Deno.test({ }, { types: ["./subdir/foo_types.d.ts"], - } + }, ); assert(diagnostics == null); assert(actual); @@ -112,7 +112,7 @@ Deno.test({ { sourceMap: false, module: "amd", - } + }, ); assert(actual); assertEquals(Object.keys(actual), ["foo.ts"]); @@ -155,7 +155,7 @@ Deno.test({ }, { removeComments: true, - } + }, ); assert(diagnostics == null); assert(!actual.includes(`random`)); @@ -182,7 +182,7 @@ Deno.test({ { "/foo.ts": `console.log("hello world!")\n`, }, - { target: "es2015" } + { target: "es2015" }, ); assert(diagnostics == null); assert(actual.includes(`var __awaiter = `)); |