diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-01-29 11:41:28 +1000 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-28 20:41:28 -0500 |
commit | ee9c627cc5f92898d104e9359059b57354c9f83c (patch) | |
tree | 397428aa26133100e78565755a8b8db169c12131 /tests | |
parent | f7c0f4944352f5bd2bb04d6c64e6259357d3827a (diff) |
Split out compiler snapshot (#1566)
Speeds up startup time, reduces runtime heap size.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/error_004_missing_module.ts.out | 1 | ||||
-rw-r--r-- | tests/error_006_import_ext_failure.ts.out | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/error_004_missing_module.ts.out b/tests/error_004_missing_module.ts.out index 2e91f012e..cafc3c5ad 100644 --- a/tests/error_004_missing_module.ts.out +++ b/tests/error_004_missing_module.ts.out @@ -1,4 +1,5 @@ Compiling [WILDCARD]tests/error_004_missing_module.ts +[WILDCARD] NotFound: Cannot resolve module "bad-module.ts" from "[WILDCARD]/tests/error_004_missing_module.ts" at DenoError ([WILDCARD]/js/errors.ts:[WILDCARD]) at maybeError ([WILDCARD]/js/errors.ts:[WILDCARD]) diff --git a/tests/error_006_import_ext_failure.ts.out b/tests/error_006_import_ext_failure.ts.out index 316ebcfd2..01cc23274 100644 --- a/tests/error_006_import_ext_failure.ts.out +++ b/tests/error_006_import_ext_failure.ts.out @@ -1,4 +1,5 @@ Compiling [WILDCARD]tests/error_006_import_ext_failure.ts +[WILDCARD] NotFound: Cannot resolve module "./non-existent" from "[WILDCARD]/tests/error_006_import_ext_failure.ts" at DenoError ([WILDCARD]/js/errors.ts:[WILDCARD]) at maybeError ([WILDCARD]/js/errors.ts:[WILDCARD]) |