From 89c84bf2c1901bef4f2ec61baf200335ef9cd91d Mon Sep 17 00:00:00 2001 From: Payam Valadkhan Date: Mon, 17 Jul 2023 16:45:29 -0400 Subject: [PATCH] test(core): update runtime error list to include deps tracker error (#50980) The previous commits add a new runtime error code (RUNTIME_DEPS_INVALID_IMPORTED_TYPE) which needs to be added to the golden for the tests to pass. PR Close #50980 --- goldens/public-api/core/errors.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/goldens/public-api/core/errors.md b/goldens/public-api/core/errors.md index a5b3934aef5..77492e276c3 100644 --- a/goldens/public-api/core/errors.md +++ b/goldens/public-api/core/errors.md @@ -111,6 +111,8 @@ export const enum RuntimeErrorCode { // (undocumented) REQUIRE_SYNC_WITHOUT_SYNC_EMIT = 601, // (undocumented) + RUNTIME_DEPS_INVALID_IMPORTED_TYPE = 1000, + // (undocumented) SIGNAL_WRITE_FROM_ILLEGAL_CONTEXT = 600, // (undocumented) TEMPLATE_STRUCTURE_ERROR = 305,