summaryrefslogtreecommitdiff
path: root/cli/tests/unit/format_error_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/format_error_test.ts')
-rw-r--r--cli/tests/unit/format_error_test.ts39
1 files changed, 0 insertions, 39 deletions
diff --git a/cli/tests/unit/format_error_test.ts b/cli/tests/unit/format_error_test.ts
deleted file mode 100644
index 5c9520535..000000000
--- a/cli/tests/unit/format_error_test.ts
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
-import { assert } from "./test_util.ts";
-
-Deno.test(function formatDiagnosticBasic() {
- const fixture: Deno.Diagnostic[] = [
- {
- start: {
- line: 0,
- character: 0,
- },
- end: {
- line: 0,
- character: 7,
- },
- fileName: "test.ts",
- messageText:
- "Cannot find name 'console'. Do you need to change your target library? Try changing the `lib` compiler option to include 'dom'.",
- sourceLine: `console.log("a");`,
- category: 1,
- code: 2584,
- },
- ];
- const out = Deno.formatDiagnostics(fixture);
- assert(out.includes("Cannot find name"));
- assert(out.includes("test.ts"));
-});
-
-Deno.test(function formatDiagnosticError() {
- let thrown = false;
- // deno-lint-ignore no-explicit-any
- const bad = ([{ hello: 123 }] as any) as Deno.Diagnostic[];
- try {
- Deno.formatDiagnostics(bad);
- } catch (e) {
- assert(e instanceof Deno.errors.InvalidData);
- thrown = true;
- }
- assert(thrown);
-});