summaryrefslogtreecommitdiff
path: root/cli/tests/lib_runtime_api.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/lib_runtime_api.ts')
-rw-r--r--cli/tests/lib_runtime_api.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/lib_runtime_api.ts b/cli/tests/lib_runtime_api.ts
index 848b523a1..5d76ea1c5 100644
--- a/cli/tests/lib_runtime_api.ts
+++ b/cli/tests/lib_runtime_api.ts
@@ -1,10 +1,10 @@
const [errors, program] = await Deno.compile(
"main.ts",
{
- "main.ts": `document.getElementById("foo");`
+ "main.ts": `document.getElementById("foo");`,
},
{
- lib: ["dom", "esnext"]
+ lib: ["dom", "esnext"],
}
);