diff options
Diffstat (limited to 'cli/tests/testdata/check/no_error_truncation')
| -rw-r--r-- | cli/tests/testdata/check/no_error_truncation/deno.json | 5 | ||||
| -rw-r--r-- | cli/tests/testdata/check/no_error_truncation/main.out | 11 | ||||
| -rw-r--r-- | cli/tests/testdata/check/no_error_truncation/main.ts | 12 |
3 files changed, 0 insertions, 28 deletions
diff --git a/cli/tests/testdata/check/no_error_truncation/deno.json b/cli/tests/testdata/check/no_error_truncation/deno.json deleted file mode 100644 index 643707ccc..000000000 --- a/cli/tests/testdata/check/no_error_truncation/deno.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "compilerOptions": { - "noErrorTruncation": true - } -} diff --git a/cli/tests/testdata/check/no_error_truncation/main.out b/cli/tests/testdata/check/no_error_truncation/main.out deleted file mode 100644 index 13fd5aae4..000000000 --- a/cli/tests/testdata/check/no_error_truncation/main.out +++ /dev/null @@ -1,11 +0,0 @@ -error: TS2322 [ERROR]: Type '{ propertyWithAnExceedinglyLongName1: string; propertyWithAnExceedinglyLongName2: string; propertyWithAnExceedinglyLongName3: string; propertyWithAnExceedinglyLongName4: string; propertyWithAnExceedinglyLongName5: string; propertyWithAnExceedinglyLongName6: string; propertyWithAnExceedinglyLongName7: string; propertyWithAnExceedinglyLongName8: string; }' is not assignable to type 'string'. -const _s: string = x; - ~~ - at file:///[WILDCARD]/no_error_truncation/main.ts:12:7 - -TS2454 [ERROR]: Variable 'x' is used before being assigned. -const _s: string = x; - ^ - at file:///[WILDCARD]/no_error_truncation/main.ts:12:20 - -Found 2 errors. diff --git a/cli/tests/testdata/check/no_error_truncation/main.ts b/cli/tests/testdata/check/no_error_truncation/main.ts deleted file mode 100644 index bb1856602..000000000 --- a/cli/tests/testdata/check/no_error_truncation/main.ts +++ /dev/null @@ -1,12 +0,0 @@ -let x: { - propertyWithAnExceedinglyLongName1: string; - propertyWithAnExceedinglyLongName2: string; - propertyWithAnExceedinglyLongName3: string; - propertyWithAnExceedinglyLongName4: string; - propertyWithAnExceedinglyLongName5: string; - propertyWithAnExceedinglyLongName6: string; - propertyWithAnExceedinglyLongName7: string; - propertyWithAnExceedinglyLongName8: string; -}; - -const _s: string = x; |
