diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out | 6 | ||||
-rw-r--r-- | cli/tests/testdata/bundle/fixture11.out | 8 | ||||
-rw-r--r-- | cli/tests/testdata/doc/types_header.out | 2 | ||||
-rw-r--r-- | cli/tests/testdata/doc/types_hint.out | 2 | ||||
-rw-r--r-- | cli/tests/testdata/doc/types_ref.out | 2 | ||||
-rw-r--r-- | cli/tests/testdata/doc/use_import_map.out | 2 | ||||
-rw-r--r-- | cli/tests/testdata/lint/expected_json.out | 2 | ||||
-rw-r--r-- | cli/tests/unit/event_target_test.ts | 1 | ||||
-rw-r--r-- | cli/tests/unit/globals_test.ts | 1 |
9 files changed, 14 insertions, 12 deletions
diff --git a/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out b/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out index f1a5077d8..ac3026826 100644 --- a/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out +++ b/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out @@ -1,12 +1,12 @@ -Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:3:2 +Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:3:2 function test(name: string, fn: Function): void -Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:4:2 +Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:4:2 function test(options: object): void -Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:5:2 +Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:5:2 function test(name: string | object, fn?: Function): void diff --git a/cli/tests/testdata/bundle/fixture11.out b/cli/tests/testdata/bundle/fixture11.out index d143e8723..4f333a513 100644 --- a/cli/tests/testdata/bundle/fixture11.out +++ b/cli/tests/testdata/bundle/fixture11.out @@ -2,10 +2,10 @@ function a() { console.log("a"); } var O1; -(function(O1) { - O1[O1["A"] = 0] = "A"; - O1[O1["B"] = 1] = "B"; - O1[O1["C"] = 2] = "C"; +(function(O) { + O[O["A"] = 0] = "A"; + O[O["B"] = 1] = "B"; + O[O["C"] = 2] = "C"; })(O1 || (O1 = { })); export { O1 as O }; diff --git a/cli/tests/testdata/doc/types_header.out b/cli/tests/testdata/doc/types_header.out index ccff1a373..c7eda2d87 100644 --- a/cli/tests/testdata/doc/types_header.out +++ b/cli/tests/testdata/doc/types_header.out @@ -1,6 +1,6 @@ Download http://127.0.0.1:4545/xTypeScriptTypes.js Download http://127.0.0.1:4545/xTypeScriptTypes.d.ts -Defined in http://127.0.0.1:4545/xTypeScriptTypes.d.ts:1:0 +Defined in http://127.0.0.1:4545/xTypeScriptTypes.d.ts:1:0 const foo: "foo" diff --git a/cli/tests/testdata/doc/types_hint.out b/cli/tests/testdata/doc/types_hint.out index 7eb05faed..dd975360a 100644 --- a/cli/tests/testdata/doc/types_hint.out +++ b/cli/tests/testdata/doc/types_hint.out @@ -1,4 +1,4 @@ -Defined in [WILDCARD]/type_definitions/foo.d.ts:2:0 +Defined in [WILDCARD]/type_definitions/foo.d.ts:2:0 const foo: string An exported value. diff --git a/cli/tests/testdata/doc/types_ref.out b/cli/tests/testdata/doc/types_ref.out index 7eb05faed..dd975360a 100644 --- a/cli/tests/testdata/doc/types_ref.out +++ b/cli/tests/testdata/doc/types_ref.out @@ -1,4 +1,4 @@ -Defined in [WILDCARD]/type_definitions/foo.d.ts:2:0 +Defined in [WILDCARD]/type_definitions/foo.d.ts:2:0 const foo: string An exported value. diff --git a/cli/tests/testdata/doc/use_import_map.out b/cli/tests/testdata/doc/use_import_map.out index 0b27ccf18..82de4dbb0 100644 --- a/cli/tests/testdata/doc/use_import_map.out +++ b/cli/tests/testdata/doc/use_import_map.out @@ -1,4 +1,4 @@ -Defined in [WILDCARD]/doc/module/fun.js:2:0 +Defined in [WILDCARD]/doc/module/fun.js:2:0 function fun(_a, _b) This is some documentation diff --git a/cli/tests/testdata/lint/expected_json.out b/cli/tests/testdata/lint/expected_json.out index dbeb8039b..9af79ce3d 100644 --- a/cli/tests/testdata/lint/expected_json.out +++ b/cli/tests/testdata/lint/expected_json.out @@ -58,7 +58,7 @@ "errors": [ { "file_path": "[WILDCARD]malformed.js", - "message": "Expected }, got <eof> at [WILDCARD]malformed.js:4:15" + "message": "Expected }, got <eof> at [WILDCARD]malformed.js:4:16" } ] } diff --git a/cli/tests/unit/event_target_test.ts b/cli/tests/unit/event_target_test.ts index 0d0d89154..a6c942773 100644 --- a/cli/tests/unit/event_target_test.ts +++ b/cli/tests/unit/event_target_test.ts @@ -1,4 +1,5 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// deno-lint-ignore-file no-window-prefix import { assertEquals, unitTest } from "./test_util.ts"; unitTest(function addEventListenerTest() { diff --git a/cli/tests/unit/globals_test.ts b/cli/tests/unit/globals_test.ts index 0051dce49..d989ab54a 100644 --- a/cli/tests/unit/globals_test.ts +++ b/cli/tests/unit/globals_test.ts @@ -1,4 +1,5 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. +// deno-lint-ignore-file no-window-prefix import { assert, unitTest } from "./test_util.ts"; unitTest(function globalThisExists() { |