diff options
-rw-r--r-- | cli/tests/037_fetch_multiple.out | 4 | ||||
-rw-r--r-- | cli/tests/error_012_bad_dynamic_import_specifier.ts.out | 2 | ||||
-rw-r--r-- | cli/tests/integration_tests.rs | 2 | ||||
-rw-r--r-- | cli/tests/single_compile_with_reload.ts.out | 4 | ||||
-rw-r--r-- | cli/tests/ts_decorators.ts.out | 2 | ||||
-rw-r--r-- | cli/tests/ts_type_imports.ts.out | 2 | ||||
-rw-r--r-- | cli/tests/tsx_imports.ts.out | 2 | ||||
-rw-r--r-- | cli/tests/type_definitions_for_export.ts.out | 2 | ||||
-rw-r--r-- | cli/tests/type_directives_redirect.ts.out | 2 | ||||
-rw-r--r-- | cli/tsc.rs | 2 |
10 files changed, 12 insertions, 12 deletions
diff --git a/cli/tests/037_fetch_multiple.out b/cli/tests/037_fetch_multiple.out index 1a703a10c..2497cfa76 100644 --- a/cli/tests/037_fetch_multiple.out +++ b/cli/tests/037_fetch_multiple.out @@ -1,5 +1,5 @@ Download http://localhost:4545/cli/tests/subdir/mod2.ts Download http://localhost:4545/cli/tests/subdir/print_hello.ts -Compile [WILDCARD]/fetch/test.ts +Check [WILDCARD]/fetch/test.ts Download http://localhost:4545/cli/tests/subdir/mt_text_typescript.t1.ts -Compile [WILDCARD]/fetch/other.ts +Check [WILDCARD]/fetch/other.ts diff --git a/cli/tests/error_012_bad_dynamic_import_specifier.ts.out b/cli/tests/error_012_bad_dynamic_import_specifier.ts.out index 78770dc81..c337869dd 100644 --- a/cli/tests/error_012_bad_dynamic_import_specifier.ts.out +++ b/cli/tests/error_012_bad_dynamic_import_specifier.ts.out @@ -1,2 +1,2 @@ -Compile [WILDCARD]error_012_bad_dynamic_import_specifier.ts +Check [WILDCARD]error_012_bad_dynamic_import_specifier.ts error: Uncaught TypeError: relative import path "bad-module.ts" not prefixed with / or ./ or ../ Imported from "[WILDCARD]/error_012_bad_dynamic_import_specifier.ts" diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 239d1ca52..8f29d8307 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -583,7 +583,7 @@ fn ts_dependency_recompilation() { let stderr_output = std::str::from_utf8(&output.stderr).unwrap().trim(); assert!(stdout_output.ends_with("foo")); - assert!(stderr_output.starts_with("Compile")); + assert!(stderr_output.starts_with("Check")); // Overwrite contents of b.ts and run again std::fs::write( diff --git a/cli/tests/single_compile_with_reload.ts.out b/cli/tests/single_compile_with_reload.ts.out index c3e87e7d3..88c3f97ab 100644 --- a/cli/tests/single_compile_with_reload.ts.out +++ b/cli/tests/single_compile_with_reload.ts.out @@ -1,5 +1,5 @@ -Compile [WILDCARD]single_compile_with_reload.ts -Compile [WILDCARD]single_compile_with_reload_dyn.ts +Check [WILDCARD]single_compile_with_reload.ts +Check [WILDCARD]single_compile_with_reload_dyn.ts Hello 1 2 diff --git a/cli/tests/ts_decorators.ts.out b/cli/tests/ts_decorators.ts.out index 69d5937a9..ee77417cf 100644 --- a/cli/tests/ts_decorators.ts.out +++ b/cli/tests/ts_decorators.ts.out @@ -1,2 +1,2 @@ -Compile [WILDCARD] +Check [WILDCARD] SomeClass { someField: "asdf" } diff --git a/cli/tests/ts_type_imports.ts.out b/cli/tests/ts_type_imports.ts.out index 2763fbce1..3972d6a97 100644 --- a/cli/tests/ts_type_imports.ts.out +++ b/cli/tests/ts_type_imports.ts.out @@ -1,4 +1,4 @@ -Compile [WILDCARD]ts_type_imports.ts +Check [WILDCARD]ts_type_imports.ts error: TS2322 [ERROR]: Type 'Map<string, string>' is not assignable to type 'Foo'. Type 'string' is not assignable to type 'number'. const foo: Foo = new Map<string, string>(); diff --git a/cli/tests/tsx_imports.ts.out b/cli/tests/tsx_imports.ts.out index 4ea4308b1..1f8b10d32 100644 --- a/cli/tests/tsx_imports.ts.out +++ b/cli/tests/tsx_imports.ts.out @@ -1,2 +1,2 @@ -Compile [WILDCARD]tsx_imports.ts +Check [WILDCARD]tsx_imports.ts { factory: [Function: View], props: null, children: [] } diff --git a/cli/tests/type_definitions_for_export.ts.out b/cli/tests/type_definitions_for_export.ts.out index 81f0167c5..8f1240bc7 100644 --- a/cli/tests/type_definitions_for_export.ts.out +++ b/cli/tests/type_definitions_for_export.ts.out @@ -1,4 +1,4 @@ -Compile [WILDCARD]type_definitions_for_export.ts +Check [WILDCARD]type_definitions_for_export.ts error: TS2345 [ERROR]: Argument of type 'string' is not assignable to parameter of type 'number'. bar(foo); ~~~ diff --git a/cli/tests/type_directives_redirect.ts.out b/cli/tests/type_directives_redirect.ts.out index 7473884f8..471d9c0b4 100644 --- a/cli/tests/type_directives_redirect.ts.out +++ b/cli/tests/type_directives_redirect.ts.out @@ -2,4 +2,4 @@ Download [WILDCARD]type_directives_redirect.js Download [WILDCARD]xTypeScriptTypesRedirect.d.ts Download [WILDCARD]xTypeScriptTypesRedirect.d.ts Download [WILDCARD]xTypeScriptTypesRedirected.d.ts -Compile [WILDCARD]type_directives_redirect.ts +Check [WILDCARD]type_directives_redirect.ts diff --git a/cli/tsc.rs b/cli/tsc.rs index 2ef620a6f..2104d9988 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -585,7 +585,7 @@ impl TsCompiler { // TODO(bartlomieju): lift this call up - TSC shouldn't print anything info!( "{} {}", - colors::green("Compile".to_string()), + colors::green("Check".to_string()), module_url.to_string() ); |