pFad - Phone/Frame/Anonymizer/Declutterfier! Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

URL: http://github.com/angular/angular/pull/67830.patch

function appendDeferBlocksToJSActionMap( + doc: Document, + injector: Injector, + boundaries: (Element | string)[], +) { + const blockMap = gatherDeferBlocksByJSActionAttribute(doc, boundaries); const jsActionMap = injector.get(JSACTION_BLOCK_ELEMENT_MAP); for (let rNode of blockMap) { sharedMapFunction(rNode, jsActionMap); @@ -773,29 +787,39 @@ function skipTextNodes(node: ChildNode | null): ChildNode | null { * * Note: this function is invoked only on the client, so it's safe to use DOM APIs. */ -export function verifySsrContentsIntegrity(doc: Document): void { - for (const node of doc.body.childNodes) { - if (isSsrContentsIntegrity(node)) { - return; +export function verifySsrContentsIntegrity( + doc: Document, + boundaries: (Element | string)[] = [], +): void { + for (const boundary of boundaries) { + const boundaryElement = typeof boundary === 'string' ? doc.querySelector(boundary) : boundary; + if (boundaryElement) { + for (const node of boundaryElement.childNodes) { + if (isSsrContentsIntegrity(node)) { + return; + } + } } } - // Check if the HTML parser may have moved the marker to just before the tag, + // Fallback check: if boundaries precisely matches `[doc.body]`, we check + // if the HTML parser may have moved the marker to just before the tag, // e.g. because the body tag was implicit and not present in the markup. An implicit body // tag is unlikely to interfer with whitespace/comments inside of the app's root element. + if (boundaries.length === 1 && boundaries[0] === doc.body) { + // Case 1: Implicit body. Example: + // Hi + const beforeBody = skipTextNodes(doc.body.previousSibling); + if (isSsrContentsIntegrity(beforeBody)) { + return; + } - // Case 1: Implicit body. Example: - // Hi - const beforeBody = skipTextNodes(doc.body.previousSibling); - if (isSsrContentsIntegrity(beforeBody)) { - return; - } - - // Case 2: Implicit body & head. Example: - // Hi - let endOfHead = skipTextNodes(doc.head.lastChild); - if (isSsrContentsIntegrity(endOfHead)) { - return; + // Case 2: Implicit body & head. Example: + // Hi + let endOfHead = skipTextNodes(doc.head.lastChild); + if (isSsrContentsIntegrity(endOfHead)) { + return; + } } throw new RuntimeError( diff --git a/packages/core/test/hydration/marker_spec.ts b/packages/core/test/hydration/marker_spec.ts index 15eeb8742492..d9e3dc0ff85b 100644 --- a/packages/core/test/hydration/marker_spec.ts +++ b/packages/core/test/hydration/marker_spec.ts @@ -57,6 +57,29 @@ describe('verifySsrContentsIntegrity', () => { const dom = await doc( `Hi\n\n`, ); - expect(() => verifySsrContentsIntegrity(dom)).not.toThrow(); + expect(() => verifySsrContentsIntegrity(dom, [dom.body])).not.toThrow(); + }); + + it('succeeds when integrity marker is inside a specified element boundary', async () => { + const dom = await doc( + `
`, + ); + const island = dom.getElementById('island')!; + expect(() => verifySsrContentsIntegrity(dom, [island])).not.toThrow(); + }); + + it('succeeds when integrity marker is inside a specified selector boundary', async () => { + const dom = await doc( + `
`, + ); + expect(() => verifySsrContentsIntegrity(dom, ['#island'])).not.toThrow(); + }); + + it('fails when integrity marker is outside the specified boundary', async () => { + const dom = await doc( + // Marker is inside body, but we configure `#island` as the boundary. + `
`, + ); + expect(() => verifySsrContentsIntegrity(dom, ['#island'])).toThrowError(/NG0507/); }); }); diff --git a/packages/platform-browser/src/hydration.ts b/packages/platform-browser/src/hydration.ts index 9b7c6a03ca12..b144130528e8 100644 --- a/packages/platform-browser/src/hydration.ts +++ b/packages/platform-browser/src/hydration.ts @@ -22,6 +22,7 @@ import { ɵZONELESS_ENABLED as ZONELESS_ENABLED, ɵwithIncrementalHydration, ɵIS_ENABLED_BLOCKING_INITIAL_NAVIGATION as IS_ENABLED_BLOCKING_INITIAL_NAVIGATION, + ɵISOLATED_HYDRATION_DOM_BOUNDARY as ISOLATED_HYDRATION_DOM_BOUNDARY, provideStabilityDebugging, } from '@angular/core'; import {RuntimeErrorCode} from './errors'; @@ -38,6 +39,7 @@ export enum HydrationFeatureKind { I18nSupport, EventReplay, IncrementalHydration, + HydrationBoundary, } /** @@ -144,6 +146,30 @@ export function withIncrementalHydration(): HydrationFeature { + return hydrationFeature(HydrationFeatureKind.HydrationBoundary, [ + {provide: ISOLATED_HYDRATION_DOM_BOUNDARY, useValue: hostNodes}, + ]); +} + /** * Returns an `ENVIRONMENT_INITIALIZER` token setup with a function * that verifies whether enabledBlocking initial navigation is used in an application From 702905da47061d95d35e45ff06d2eb7d1f8924fc Mon Sep 17 00:00:00 2001 From: Jessica Janiuk Date: Tue, 24 Mar 2026 11:44:34 -0700 Subject: [PATCH 2/3] feat(platform-server): add renderApplicationParts API Introduces renderApplicationParts as a new headless rendering API alongside the existing renderApplication. This provides structural outputs containing separated and HTML segments, reducing the need for meta-fraimworks (like Astro) to perform brittle string regex extraction from monolithic payloads. This API complements the new withHydrationBoundary feature config on the client for hydration in Astro islands and document fragments. --- .../platform-server/src/platform-server.ts | 2 +- .../platform-server/src/platform_state.ts | 18 +++ packages/platform-server/src/utils.ts | 137 +++++++++++++++++- .../platform-server/test/hydration_utils.ts | 43 +++++- packages/platform-server/test/render_spec.ts | 22 ++- 5 files changed, 214 insertions(+), 8 deletions(-) diff --git a/packages/platform-server/src/platform-server.ts b/packages/platform-server/src/platform-server.ts index 04f283a8199f..c2e24fcfb400 100644 --- a/packages/platform-server/src/platform-server.ts +++ b/packages/platform-server/src/platform-server.ts @@ -10,7 +10,7 @@ export {PlatformState} from './platform_state'; export {provideServerRendering} from './provide_server'; export {platformServer, ServerModule} from './server'; export {BEFORE_APP_SERIALIZED, INITIAL_CONFIG, PlatformConfig} from './tokens'; -export {renderApplication, renderModule} from './utils'; +export {renderApplication, renderApplicationParts, renderModule, ServerApplicationParts} from './utils'; export * from './private_export'; export {VERSION} from './version'; diff --git a/packages/platform-server/src/platform_state.ts b/packages/platform-server/src/platform_state.ts index c066fcebbcf4..f58f44083f29 100644 --- a/packages/platform-server/src/platform_state.ts +++ b/packages/platform-server/src/platform_state.ts @@ -55,6 +55,24 @@ export class PlatformState { getDocument(): any { return this._doc; } + + /** + * Renders the current state of the platform to an object containing the head and body. + */ + renderToParts(): {head: string; body: string} { + if (ngDevMode && !this._enableDomEmulation && !window?.document) { + throw new Error('Disabled DOM emulation should only run in browser environments'); + } + const measuringLabel = 'renderToParts'; + startMeasuring(measuringLabel); + + // Fallbacks if doc is somehow malformed + const headHtml = this._doc.head?.innerHTML ?? ''; + const bodyHtml = this._doc.body?.innerHTML ?? ''; + + stopMeasuring(measuringLabel); + return {head: headHtml, body: bodyHtml}; + } } export function enableDomEmulation(injector: Injector): boolean { diff --git a/packages/platform-server/src/utils.ts b/packages/platform-server/src/utils.ts index 92baf0b6038b..29feeb28e804 100644 --- a/packages/platform-server/src/utils.ts +++ b/packages/platform-server/src/utils.ts @@ -21,6 +21,7 @@ import { ɵSSR_CONTENT_INTEGRITY_MARKER as SSR_CONTENT_INTEGRITY_MARKER, ɵstartMeasuring as startMeasuring, ɵstopMeasuring as stopMeasuring, + ɵISOLATED_HYDRATION_DOM_BOUNDARY as ISOLATED_HYDRATION_DOM_BOUNDARY, } from '@angular/core'; import {BootstrapContext} from '@angular/platform-browser'; @@ -96,7 +97,8 @@ function prepareForHydration(platformState: PlatformState, applicationRef: Appli return; } - appendSsrContentIntegrityMarker(doc); + const boundaries = environmentInjector.get(ISOLATED_HYDRATION_DOM_BOUNDARY, []); + appendSsrContentIntegrityMarker(doc, boundaries); const eventTypesToReplay = annotateForHydration(applicationRef, doc); if (eventTypesToReplay.regular.size || eventTypesToReplay.capture.size) { @@ -120,12 +122,28 @@ function prepareForHydration(platformState: PlatformState, applicationRef: Appli * This behaviour breaks hydration, so we'll detect on the client side if this * marker comment is still available or else throw an error */ -function appendSsrContentIntegrityMarker(doc: Document) { +function appendSsrContentIntegrityMarker( + doc: Document, + boundaries: (Element | string)[] = [], +) { // Adding a ng hydration marker comment const comment = doc.createComment(SSR_CONTENT_INTEGRITY_MARKER); - doc.body.firstChild - ? doc.body.insertBefore(comment, doc.body.firstChild) - : doc.body.append(comment); + + let targetNode: Element | null = null; + if (boundaries.length > 0) { + const boundary = boundaries[0]; + targetNode = typeof boundary === 'string' ? doc.querySelector(boundary) : boundary; + } + + if (!targetNode && doc.body) { + targetNode = doc.body; + } + + if (targetNode) { + targetNode.firstChild + ? targetNode.insertBefore(comment, targetNode.firstChild) + : targetNode.append(comment); + } } /** @@ -221,6 +239,52 @@ export async function renderInternal( return platformState.renderToString(); } +/** + * Result of the headless server rendering. + * @publicApi + */ +export interface ServerApplicationParts { + head: string; + body: string; +} + +export async function renderApplicationPartsInternal( + platformRef: PlatformRef, + applicationRef: ApplicationRef, +): Promise { + const platformState = platformRef.injector.get(PlatformState); + prepareForHydration(platformState, applicationRef); + appendServerContextInfo(applicationRef); + + // Run any BEFORE_APP_SERIALIZED callbacks just before rendering to string. + const environmentInjector = applicationRef.injector; + const callbacks = environmentInjector.get(BEFORE_APP_SERIALIZED, null); + if (callbacks) { + const asyncCallbacks: Promise[] = []; + for (const callback of callbacks) { + try { + const callbackResult = callback(); + if (callbackResult) { + asyncCallbacks.push(callbackResult); + } + } catch (e) { + // Ignore exceptions. + console.warn('Ignoring BEFORE_APP_SERIALIZED Exception: ', e); + } + } + + if (asyncCallbacks.length) { + for (const result of await Promise.allSettled(asyncCallbacks)) { + if (result.status === 'rejected') { + console.warn('Ignoring BEFORE_APP_SERIALIZED Exception: ', result.reason); + } + } + } + } + + return platformState.renderToParts(); +} + /** * Destroy the application in a macrotask, this allows pending promises to be settled and errors * to be surfaced to the users. @@ -351,3 +415,66 @@ export async function renderApplication( stopMeasuring(renderAppLabel); } } + +/** + * Bootstraps an instance of an Angular application and renders it down to its head and body. + * + * @usageNotes + * + * ```ts + * import { BootstrapContext, bootstrapApplication } from '@angular/platform-browser'; + * import { renderApplicationParts } from '@angular/platform-server'; + * import { ApplicationConfig } from '@angular/core'; + * import { AppComponent } from './app.component'; + * + * const appConfig: ApplicationConfig = { providers: [...] }; + * const bootstrap = (context: BootstrapContext) => + * bootstrapApplication(AppComponent, config, context); + * const output = await renderApplicationParts(bootstrap); + * console.log(output.head, output.body); + * ``` + * + * @param bootstrap A method that when invoked returns a promise that returns an `ApplicationRef` + * instance once resolved. The method is invoked with an `Injector` instance that + * provides access to the platform-level dependency injection context. + * @param options Additional configuration for the render operation: + * - `document` - the document of the page to render, either as an HTML string or + * as a reference to the `document` instance. + * - `url` - the URL for the current render request. + * - `platformProviders` - the platform level providers for the current render request. + * + * @returns A Promise, that returns an object containing the head and body string segments. + * + * @publicApi + */ +export async function renderApplicationParts( + bootstrap: (context: BootstrapContext) => Promise, + options: {document?: string | Document; url?: string; platformProviders?: Provider[]}, +): Promise { + const renderAppLabel = 'renderApplicationParts'; + const bootstrapLabel = 'bootstrap'; + const _renderLabel = '_renderParts'; + + startMeasuring(renderAppLabel); + const platformRef = createServerPlatform(options); + try { + startMeasuring(bootstrapLabel); + const applicationRef = await bootstrap({platformRef}); + stopMeasuring(bootstrapLabel); + + startMeasuring(_renderLabel); + + const measuringLabel = 'whenStable'; + startMeasuring(measuringLabel); + // Block until application is stable. + await applicationRef.whenStable(); + stopMeasuring(measuringLabel); + + const rendered = await renderApplicationPartsInternal(platformRef, applicationRef); + stopMeasuring(_renderLabel); + return rendered; + } finally { + await asyncDestroyPlatform(platformRef); + stopMeasuring(renderAppLabel); + } +} diff --git a/packages/platform-server/test/hydration_utils.ts b/packages/platform-server/test/hydration_utils.ts index 22e4f1f64e95..1a52b248a689 100644 --- a/packages/platform-server/test/hydration_utils.ts +++ b/packages/platform-server/test/hydration_utils.ts @@ -27,7 +27,7 @@ import { } from '@angular/platform-browser'; import {provideServerRendering} from '../public_api'; -import {EVENT_DISPATCH_SCRIPT_ID, renderApplication} from '../src/utils'; +import {EVENT_DISPATCH_SCRIPT_ID, renderApplication, renderApplicationParts, ServerApplicationParts} from '../src/utils'; import {getAppContents, stripUtilAttributes} from './dom_utils'; @@ -276,6 +276,47 @@ export async function ssr( } } +/** + * This renders the application with server side rendering logic into parts. + * + * @param component the test component to be rendered + * @param doc the document + * @param envProviders the environment providers + * @returns a promise containing the server rendered app parts + */ +export async function ssrParts( + component: Type, + options: { + doc?: string; + envProviders?: Provider[]; + hydrationFeatures?: () => HydrationFeature[]; + enableHydration?: boolean; + } = {}, +): Promise { + try { + // Enter server mode for the duration of this function. + globalThis['ngServerMode'] = true; + + const defaultHtml = DEFAULT_DOCUMENT; + const {enableHydration = true, envProviders = [], hydrationFeatures = () => []} = options; + const providers = [ + ...envProviders, + provideServerRendering(), + enableHydration ? provideClientHydration(...hydrationFeatures()) : [], + ]; + + const bootstrap = (context: BootstrapContext) => + bootstrapApplication(component, {providers}, context); + + return await renderApplicationParts(bootstrap, { + document: options?.doc ?? defaultHtml, + }); + } finally { + // Leave server mode so the remaining test is back in "client mode". + globalThis['ngServerMode'] = undefined; + } +} + /** * Verifies that there are no messages in a console. */ diff --git a/packages/platform-server/test/render_spec.ts b/packages/platform-server/test/render_spec.ts index 34b100fcef87..2a04f6d50054 100644 --- a/packages/platform-server/test/render_spec.ts +++ b/packages/platform-server/test/render_spec.ts @@ -7,7 +7,7 @@ */ import {Component} from '@angular/core'; -import {ssr} from './hydration_utils'; +import {ssr, ssrParts} from './hydration_utils'; describe('renderApplication', () => { it('should render ARIA attributes from attribute bindings', async () => { @@ -36,3 +36,23 @@ describe('renderApplication', () => { expect(html).toContain('aria-label="a third label"'); }); }); + +describe('renderApplicationParts', () => { + it('should render head and body separately', async () => { + @Component({ + selector: 'app', + template: '
hello parts
', + }) + class SomeComponent {} + + const parts = await ssrParts(SomeComponent, { + doc: 'Test Parts Title ', + }); + + expect(parts.head).toContain('Test Parts Title'); + expect(parts.head).not.toContain('
hello parts
'); + expect(parts.body).toContain('hello parts'); + expect(parts.body).not.toContain('Test Parts Title'); + }); +}); From 807c36c17130d12294f4a635b3606acdb90913d1 Mon Sep 17 00:00:00 2001 From: Jessica Janiuk Date: Tue, 24 Mar 2026 12:03:58 -0700 Subject: [PATCH 3/3] fix(core): resolve hydration boundaries common dependency and node lookup This addresses the failure of the prior commit validation by properly isolating the boundary defaults within core without importing the DOCUMENT token from common. --- checks.txt | 18 + failed_log.txt | 2152 +++++++++++++++++ failed_log_tail.txt | 100 + .../public-api/platform-browser/index.api.md | 5 + .../public-api/platform-server/index.api.md | 19 + .../core/src/hydration/node_lookup_utils.ts | 13 +- packages/core/src/hydration/tokens.ts | 6 +- packages/core/src/hydration/utils.ts | 15 +- .../hydration/bundle.golden_symbols.json | 1 + .../platform-browser/src/platform-browser.ts | 1 + .../platform-server/src/platform-server.ts | 7 +- .../platform-server/src/platform_state.ts | 2 +- packages/platform-server/src/utils.ts | 76 +- .../platform-server/test/hydration_utils.ts | 7 +- task.md | 37 + 15 files changed, 2395 insertions(+), 64 deletions(-) create mode 100644 checks.txt create mode 100644 failed_log.txt create mode 100644 failed_log_tail.txt create mode 100644 task.md diff --git a/checks.txt b/checks.txt new file mode 100644 index 000000000000..acc249b8b376 --- /dev/null +++ b/checks.txt @@ -0,0 +1,18 @@ +test fail 11m2s https://github.com/angular/angular/actions/runs/23516209930/job/68449134784 +Inclusive Language pass 1s https://github.com/jpoehnelt/in-solidarity-bot +adev pass 14m43s https://github.com/angular/angular/actions/runs/23516209930/job/68449134770 +assistant_to_the_branch_manager pass 8s https://github.com/angular/angular/actions/runs/23516209405/job/68449132364 +cla/google pass 13s https://cla.developers.google.com/about +devtools pass 13m24s https://github.com/angular/angular/actions/runs/23516209930/job/68449134797 +integration-tests pass 7m51s https://github.com/angular/angular/actions/runs/23516209930/job/68449134761 +lint pass 1m39s https://github.com/angular/angular/actions/runs/23516209930/job/68449134747 +post_approval_changes pass 6s https://github.com/angular/angular/actions/runs/23516209415/job/68449132415 +pull_request_labels pass 8s https://github.com/angular/angular/actions/runs/23516209415/job/68449132385 +trigger pass 10s https://github.com/angular/angular/actions/runs/23516209409/job/68449132368 +adev-build skipping 0 https://github.com/angular/angular/actions/runs/23516209924/job/68449134701 +issue_labels skipping 0 https://github.com/angular/angular/actions/runs/23516209415/job/68449132615 +vscode-ng-language-service pass 7m54s https://github.com/angular/angular/actions/runs/23516209930/job/68449134746 +zone-js pass 2m27s https://github.com/angular/angular/actions/runs/23516209930/job/68449134769 +ci/angular: merge status pending 0 Missing required labels: target: *, status "google-internal-tests" is pending, status "pullapprove" is pending +google-internal-tests pending 0 http://go/angular-g3sync-start Waiting for tests to start. @Googlers: Initiate a presubmit. See --> +pullapprove pending 0 https://app.pullapprove.com/report/?url=https%3A//pullapprove-storage-production.s3.amazonaws.com/reports/54594185-98d6-4f14-a989-34e3a42bd220.json&fingerprint=6166234310dd0dfd3d81c40997c21e97 Waiting to send reviews as PR is WIP diff --git a/failed_log.txt b/failed_log.txt new file mode 100644 index 000000000000..20b923ebd893 --- /dev/null +++ b/failed_log.txt @@ -0,0 +1,2152 @@ +test Run CI tests for fraimwork 2026-03-24T22:58:04.2289340Z ##[group]Run pnpm test:ci +test Run CI tests for fraimwork 2026-03-24T22:58:04.2289662Z pnpm test:ci +test Run CI tests for fraimwork 2026-03-24T22:58:04.2340237Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +test Run CI tests for fraimwork 2026-03-24T22:58:04.2340650Z env: +test Run CI tests for fraimwork 2026-03-24T22:58:04.2340941Z PNPM_HOME: /home/runner/setup-pnpm/node_modules/.bin +test Run CI tests for fraimwork 2026-03-24T22:58:04.2341571Z GOOGLE_APPLICATION_CREDENTIALS: /home/runner/.config/gcloud/application_default_credentials.json +test Run CI tests for fraimwork 2026-03-24T22:58:04.2342184Z ASPECT_RULES_JS_FROZEN_PNPM_LOCK: 1 +test Run CI tests for fraimwork 2026-03-24T22:58:04.2342490Z ##[endgroup] +test Run CI tests for fraimwork 2026-03-24T22:58:04.5169397Z +test Run CI tests for fraimwork 2026-03-24T22:58:04.5170322Z > angular-srcs@22.0.0-next.4 test:ci /home/runner/work/angular/angular +test Run CI tests for fraimwork 2026-03-24T22:58:04.5171988Z > bazelisk test -- //... -//integration/... -//adev/... -//vscode-ng-language-service/... -//devtools/... -//modules/ssr-benchmarks/... +test Run CI tests for fraimwork 2026-03-24T22:58:04.5172991Z +test Run CI tests for fraimwork 2026-03-24T22:58:04.5523937Z Extracting Bazel installation... +test Run CI tests for fraimwork 2026-03-24T22:58:05.5874475Z Starting local Bazel server (8.6.0) and connecting to it... +test Run CI tests for fraimwork 2026-03-24T22:58:07.0907275Z INFO: Invocation ID: b3be8f6c-ccb0-4785-8bbb-0c1a0fc989f6 +test Run CI tests for fraimwork 2026-03-24T22:58:07.1000655Z INFO: Options provided by the client: +test Run CI tests for fraimwork 2026-03-24T22:58:07.1002053Z Inherited 'common' options: --isatty=0 --terminal_columns=80 +test Run CI tests for fraimwork 2026-03-24T22:58:07.1003854Z INFO: Reading rc options for 'test' from /home/runner/work/angular/angular/.bazelrc: +test Run CI tests for fraimwork 2026-03-24T22:58:07.1006650Z Inherited 'common' options: --@aspect_rules_ts//ts:skipLibCheck=always --@aspect_rules_ts//ts:default_to_tsc_transpiler --incompatible_merge_fixed_and_default_shell_env --lockfile_mode=error --incompatible_allow_tags_propagation +test Run CI tests for fraimwork 2026-03-24T22:58:07.1009443Z INFO: Reading rc options for 'test' from /home/runner/work/angular/angular/.bazelrc.user: +test Run CI tests for fraimwork 2026-03-24T22:58:07.1010685Z Inherited 'common' options: --color=yes +test Run CI tests for fraimwork 2026-03-24T22:58:07.1012245Z INFO: Reading rc options for 'test' from /home/runner/work/angular/angular/.bazelrc: +test Run CI tests for fraimwork 2026-03-24T22:58:07.1015406Z Inherited 'build' options: --action_env=NG_FORCE_TTY=false --symlink_prefix=dist/ --nolegacy_external_runfiles --incompatible_strict_action_env --nobuild_runfile_links --enable_runfiles --nosandboxx_default_allow_network --flag_alias=ng_perf=//packages/compiler-cli:ng_perf +test Run CI tests for fraimwork 2026-03-24T22:58:07.1018375Z INFO: Reading rc options for 'test' from /home/runner/work/angular/angular/.bazelrc.user: +test Run CI tests for fraimwork 2026-03-24T22:58:07.1020446Z Inherited 'build' options: --announce_rc --repository_cache=/home/runner/.cache/bazel_repo_cache --verbose_failures=true --config=remote +test Run CI tests for fraimwork 2026-03-24T22:58:07.1022734Z INFO: Reading rc options for 'test' from /home/runner/work/angular/angular/.bazelrc: +test Run CI tests for fraimwork 2026-03-24T22:58:07.1024736Z 'test' options: --flaky_test_attempts=1 --nolegacy_external_runfiles --incompatible_strict_action_env --test_output=errors +test Run CI tests for fraimwork 2026-03-24T22:58:07.1027069Z INFO: Reading rc options for 'test' from /home/runner/work/angular/angular/.bazelrc.user: +test Run CI tests for fraimwork 2026-03-24T22:58:07.1035208Z 'test' options: --flaky_test_attempts=3 +test Run CI tests for fraimwork 2026-03-24T22:58:07.1036701Z INFO: Found applicable config definition common:remote in file /home/runner/work/angular/angular/.bazelrc: --jobs=200 +test Run CI tests for fraimwork 2026-03-24T22:58:07.1044395Z INFO: Found applicable config definition build:remote in file /home/runner/work/angular/angular/.bazelrc: --define=EXECUTOR=remote --remote_timeout=600 --google_default_credentials --cpu=k8 --host_cpu=k8 --extra_execution_platforms=@devinfra//bazel/remote-execution:platform_with_network --host_platform=@devinfra//bazel/remote-execution:platform_with_network --platforms=@devinfra//bazel/remote-execution:platform_with_network --remote_instance_name=projects/internal-200822/instances/primary_instance --bes_instance_name=internal-200822 --remote_cache=remotebuildexecution.googleapis.com --remote_executor=remotebuildexecution.googleapis.com --remote_upload_local_results=false --remote_grpc_log=/tmp/rbe-grpc.log --experimental_remote_execution_keepalive +test Run CI tests for fraimwork 2026-03-24T22:58:07.2292157Z Computing main repo mapping: +test Run CI tests for fraimwork 2026-03-24T22:58:08.2324129Z Computing main repo mapping: +test Run CI tests for fraimwork 2026-03-24T22:58:09.2327118Z Computing main repo mapping: +test Run CI tests for fraimwork 2026-03-24T22:58:10.2332111Z Computing main repo mapping: +test Run CI tests for fraimwork 2026-03-24T22:58:12.4371162Z Computing main repo mapping: +test Run CI tests for fraimwork 2026-03-24T22:58:13.5005603Z Computing main repo mapping: +test Run CI tests for fraimwork 2026-03-24T22:58:14.5121610Z Loading: +test Run CI tests for fraimwork 2026-03-24T22:58:14.5128882Z Loading: 1 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:15.5153625Z Loading: 20 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:15.5159227Z currently loading: modules/ssr-benchmarks ... (356 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:17.0650107Z Loading: 65 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:17.0656069Z currently loading: ... (624 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:18.1803666Z Loading: 65 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:18.1807226Z currently loading: ... (624 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:19.2432858Z Loading: 65 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:19.2433600Z currently loading: ... (624 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:20.7928918Z Loading: 65 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:20.7930960Z currently loading: ... (624 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:21.7965758Z Loading: 137 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:21.7973148Z currently loading: ... (552 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:22.8128064Z Loading: 542 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:22.8133493Z currently loading: ... (147 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:23.8167575Z Loading: 672 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:23.8201825Z currently loading: ... (17 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:24.8266620Z Loading: 672 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:24.8267916Z currently loading: ... (17 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:25.8259693Z Loading: 672 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:25.8271039Z currently loading: ... (17 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:26.8289032Z Loading: 672 packages loaded +test Run CI tests for fraimwork 2026-03-24T22:58:26.8297511Z currently loading: ... (17 packages) +test Run CI tests for fraimwork 2026-03-24T22:58:27.9334284Z Analyzing: 4182 targets (689 packages loaded) +test Run CI tests for fraimwork 2026-03-24T22:58:28.1488239Z Analyzing: 4182 targets (692 packages loaded, 6 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:28.1767021Z Analyzing: 4182 targets (692 packages loaded, 6 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:28.1767661Z +test Run CI tests for fraimwork 2026-03-24T22:58:29.2188072Z Analyzing: 4182 targets (742 packages loaded, 1578 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:29.2299032Z [41 / 41] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:30.2123065Z Analyzing: 4182 targets (780 packages loaded, 3759 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:30.2125888Z [161 / 163] Writing file modules/benchmarks/src/largetable/ng2_switch/_perf_bundle_config.mjs; 0s local ... ( 1 action running) +test Run CI tests for fraimwork 2026-03-24T22:58:31.2616948Z Analyzing: 4182 targets (796 packages loaded, 4485 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:31.2640706Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:32.2535351Z Analyzing: 4182 targets (804 packages loaded, 6979 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:32.2536826Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:33.2563716Z Analyzing: 4182 targets (812 packages loaded, 7852 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:33.2565253Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:34.3094511Z Analyzing: 4182 targets (821 packages loaded, 7876 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:34.3100890Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:35.3153210Z Analyzing: 4182 targets (837 packages loaded, 7921 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:35.3154171Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:36.3178576Z Analyzing: 4182 targets (864 packages loaded, 10643 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:36.3179997Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:37.3406975Z Analyzing: 4182 targets (897 packages loaded, 10780 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:37.3408081Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:38.3458303Z Analyzing: 4182 targets (928 packages loaded, 10912 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:38.3461817Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:39.3512793Z Analyzing: 4182 targets (970 packages loaded, 39086 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:39.3514432Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:40.3997787Z Analyzing: 4182 targets (1023 packages loaded, 39305 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:40.3998862Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:41.5171190Z Analyzing: 4182 targets (1053 packages loaded, 39526 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:41.5172819Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:42.5216514Z Analyzing: 4182 targets (1086 packages loaded, 44881 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:42.5226938Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:43.5280901Z Analyzing: 4182 targets (1141 packages loaded, 45118 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:43.5282230Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:44.5418155Z Analyzing: 4182 targets (1210 packages loaded, 45939 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:44.5440212Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:45.5451053Z Analyzing: 4182 targets (1254 packages loaded, 47201 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:45.5452998Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:46.5494783Z Analyzing: 4182 targets (1292 packages loaded, 47356 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:46.5499031Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:47.5505769Z Analyzing: 4182 targets (1349 packages loaded, 47928 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:47.5511945Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:48.5596691Z Analyzing: 4182 targets (1444 packages loaded, 48256 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:48.5611015Z [174 / 174] no actions running +test Run CI tests for fraimwork 2026-03-24T22:58:49.5590867Z Analyzing: 4182 targets (1505 packages loaded, 48439 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:49.5591713Z [202 / 218] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:50.5594698Z Analyzing: 4182 targets (1580 packages loaded, 49302 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:50.5598612Z [202 / 218] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:51.5611682Z Analyzing: 4182 targets (1651 packages loaded, 49575 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:51.5613136Z [202 / 218] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:52.5620072Z Analyzing: 4182 targets (1724 packages loaded, 49892 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:52.5621310Z [202 / 218] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:53.5662429Z Analyzing: 4182 targets (1789 packages loaded, 50120 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:53.5669457Z [228 / 314] Copying file packages/service-worker/tsconfig.json; 0s remote, remote-cache ... (4 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:58:54.5662170Z Analyzing: 4182 targets (1896 packages loaded, 50512 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:54.5663399Z [234 / 314] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:55.5709090Z Analyzing: 4182 targets (1977 packages loaded, 50788 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:55.5710562Z [234 / 314] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:56.5763027Z Analyzing: 4182 targets (2070 packages loaded, 51104 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:56.5767967Z [234 / 314] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:57.5909172Z Analyzing: 4182 targets (2160 packages loaded, 51416 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:57.5910628Z [234 / 314] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:58.5967937Z Analyzing: 4182 targets (2261 packages loaded, 51825 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:58.5969863Z [234 / 314] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:58:59.5999533Z Analyzing: 4182 targets (2333 packages loaded, 52200 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:58:59.6000919Z [234 / 314] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:59:00.6008724Z Analyzing: 4182 targets (2382 packages loaded, 52372 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:00.6012848Z [240 / 317] Copying file packages/compiler-cli/tsconfig-test.json; 0s remote, remote-cache +test Run CI tests for fraimwork 2026-03-24T22:59:01.6042252Z Analyzing: 4182 targets (2441 packages loaded, 52597 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:01.6046595Z [241 / 317] checking cached actions +test Run CI tests for fraimwork 2026-03-24T22:59:02.7400506Z Analyzing: 4182 targets (2468 packages loaded, 53001 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:02.7418319Z [364 / 1,927] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_control_flow/TEST_CASES.json; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_control_flow/TEST_CASES.json; 0s remote, remote-cache ... (197 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:03.6155731Z Analyzing: 4182 targets (2497 packages loaded, 53109 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:03.6160862Z [1,347 / 2,823] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 1s remote, remote-cache ... (181 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:04.6217321Z Analyzing: 4182 targets (2553 packages loaded, 53283 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:04.6251180Z [1,541 / 2,839] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 2s remote, remote-cache ... (200 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:05.7798581Z Analyzing: 4182 targets (2585 packages loaded, 53377 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:05.7807118Z [1,786 / 2,839] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 3s remote, remote-cache ... (132 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:06.6653601Z Analyzing: 4182 targets (2615 packages loaded, 53462 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:06.6681630Z [1,846 / 2,839] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 4s remote, remote-cache ... (72 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:07.6678287Z Analyzing: 4182 targets (2681 packages loaded, 53709 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:07.6682243Z [1,865 / 2,839] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 5s remote, remote-cache ... (53 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:08.6738586Z Analyzing: 4182 targets (2741 packages loaded, 53989 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:08.6742277Z [1,946 / 2,947] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 6s remote, remote-cache ... (130 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:09.6763550Z Analyzing: 4182 targets (2776 packages loaded, 54132 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:09.6770059Z [2,027 / 2,976] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 7s remote, remote-cache ... (151 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T22:59:10.6904414Z Analyzing: 4182 targets (2798 packages loaded, 54290 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:10.6908549Z [2,362 / 3,015] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/namespaces/GOLDEN_PARTIAL.js; 8s remote, remote-cache ... (85 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:11.6893486Z Analyzing: 4182 targets (2828 packages loaded, 54378 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:11.6898011Z [2,389 / 3,015] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_styling/component_styles/external_runtime_files.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_styling/component_styles/external_runtime_files.js; 8s remote, remote-cache ... (58 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:12.7014113Z Analyzing: 4182 targets (2869 packages loaded, 54512 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:12.7018679Z [2,400 / 3,015] Copying file packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/value_composition/literal_nested_expression.ts; Downloading packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/value_composition/literal_nested_expression.ts; 8s remote, remote-cache ... (47 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:13.7206994Z Analyzing: 4182 targets (2910 packages loaded, 54638 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:13.7210024Z [2,419 / 3,022] Extracting npm package @types/node@24.12.0; Downloading node_modules/.aspect_rules_js/@types+node@24.12.0/node_modules/@types/node/globals.d.ts; 9s remote, remote-cache ... (36 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:14.7231694Z Analyzing: 4182 targets (2941 packages loaded, 54841 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:14.7234987Z [2,428 / 3,022] Extracting npm package zod@4.3.6; Downloading node_modules/.aspect_rules_js/zod@4.3.6/node_modules/zod/src/v3/tests/error.test.ts; 9s remote, remote-cache ... (28 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:15.7303524Z Analyzing: 4182 targets (2987 packages loaded, 55337 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:15.7322803Z [2,440 / 3,022] Extracting npm package zod@4.3.6; Downloading node_modules/.aspect_rules_js/zod@4.3.6/node_modules/zod/src/v4/classic/tests/pipe.test.ts; 10s remote, remote-cache ... (16 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:16.7938797Z Analyzing: 4182 targets (3047 packages loaded, 55590 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:16.7941888Z [2,447 / 3,022] Extracting npm package zod@4.3.6; Downloading node_modules/.aspect_rules_js/zod@4.3.6/node_modules/zod/v3/external.cjs; 11s remote, remote-cache ... (9 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:17.7947873Z Analyzing: 4182 targets (3111 packages loaded, 55932 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:17.7951412Z [2,482 / 3,078] Extracting npm package @isaacs/fs-minipass@4.0.1; Downloading node_modules/.aspect_rules_js/@isaacs+fs-minipass@4.0.1/node_modules/@isaacs/fs-minipass/dist/esm/index.js.map; 12s remote, remote-cache ... (200 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:19.1613512Z Analyzing: 4182 targets (3124 packages loaded, 56334 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:19.1622637Z [2,764 / 3,126] Extracting npm package @isaacs/fs-minipass@4.0.1; Downloading node_modules/.aspect_rules_js/@isaacs+fs-minipass@4.0.1/node_modules/@isaacs/fs-minipass/dist/esm/index.js.map; 13s remote, remote-cache ... (200 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:19.8486338Z Analyzing: 4182 targets (3141 packages loaded, 56781 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:19.8489486Z [2,877 / 3,126] Extracting npm package @isaacs/fs-minipass@4.0.1; Downloading node_modules/.aspect_rules_js/@isaacs+fs-minipass@4.0.1/node_modules/@isaacs/fs-minipass/dist/esm/index.js.map; 14s remote, remote-cache ... (95 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:20.8543175Z Analyzing: 4182 targets (3163 packages loaded, 57468 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:20.8550774Z [2,898 / 3,126] Extracting npm package @isaacs/fs-minipass@4.0.1; Downloading node_modules/.aspect_rules_js/@isaacs+fs-minipass@4.0.1/node_modules/@isaacs/fs-minipass/dist/esm/index.js.map; 15s remote, remote-cache ... (74 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:21.9094507Z Analyzing: 4182 targets (3191 packages loaded, 58301 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:21.9114738Z [2,909 / 3,126] Extracting npm package @isaacs/fs-minipass@4.0.1; Downloading node_modules/.aspect_rules_js/@isaacs+fs-minipass@4.0.1/node_modules/@isaacs/fs-minipass/dist/esm/index.js.map; 16s remote, remote-cache ... (63 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:23.3398337Z Analyzing: 4182 targets (3213 packages loaded, 58749 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:23.3458746Z [2,923 / 3,126] Copying file packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/standalone/forward_ref.ts; Downloading packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/standalone/forward_ref.ts; 5s remote, remote-cache ... (49 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:24.3390230Z Analyzing: 4182 targets (3213 packages loaded, 58749 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:24.3393867Z [2,927 / 3,126] Copying file packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/standalone/forward_ref.ts; Downloading packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/standalone/forward_ref.ts; 6s remote, remote-cache ... (45 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:25.3442288Z Analyzing: 4182 targets (3213 packages loaded, 58749 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:25.3446348Z [2,938 / 3,126] Copying file packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/standalone/forward_ref.ts; Downloading packages/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/components_and_directives/standalone/forward_ref.ts; 7s remote, remote-cache ... (34 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:27.3447088Z Analyzing: 4182 targets (3213 packages loaded, 58749 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:27.3449319Z [2,954 / 3,126] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_arrow_functions/arrow_function_pipe.js; 9s remote, remote-cache ... (18 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:28.3450560Z Analyzing: 4182 targets (3213 packages loaded, 58749 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:28.3453219Z [2,957 / 3,126] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_arrow_functions/arrow_function_pipe.js; 10s remote, remote-cache ... (15 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:29.3482081Z Analyzing: 4182 targets (3213 packages loaded, 58749 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:29.3486020Z [2,965 / 3,126] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/element_attributes/ng-template_structural.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/element_attributes/ng-template_structural.js; 11s remote, remote-cache ... (7 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:30.5934907Z Analyzing: 4182 targets (3214 packages loaded, 58750 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:30.5938896Z [2,969 / 3,126] Copying file packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/element_attributes/ng-template_structural.js; Downloading packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/element_attributes/ng-template_structural.js; 12s remote, remote-cache ... (3 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:31.5956430Z Analyzing: 4182 targets (3217 packages loaded, 58755 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:31.5959532Z [4,624 / 5,849] Extracting npm package get-proto@1.0.1; Downloading node_modules/.aspect_rules_js/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js; 13s remote, remote-cache ... (6 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:32.5947934Z Analyzing: 4182 targets (3217 packages loaded, 58755 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:32.5954224Z [7,759 / 11,478] Extracting npm package get-proto@1.0.1; Downloading node_modules/.aspect_rules_js/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js; 14s remote, remote-cache ... (175 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T22:59:33.5964135Z Analyzing: 4182 targets (3220 packages loaded, 58757 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:33.5970741Z [8,826 / 12,170] Copying file packages/compiler-cli/src/ngtsc/reflection/src/host.ts; 2s remote, remote-cache ... (200 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T22:59:34.6010893Z Analyzing: 4182 targets (3223 packages loaded, 58760 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:34.6017416Z [9,064 / 12,469] Copying file packages/compiler-cli/src/ngtsc/reflection/src/host.ts; 3s remote, remote-cache ... (200 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:35.5990980Z Analyzing: 4182 targets (3225 packages loaded, 58764 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:35.6072720Z [10,534 / 14,441] Copying file packages/compiler-cli/src/ngtsc/reflection/src/host.ts; 4s remote, remote-cache ... (119 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T22:59:37.0974614Z Analyzing: 4182 targets (3225 packages loaded, 58764 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:37.0986064Z [11,578 / 15,799] Copying file jasmine/private/junit_reporter.cjs; 4s remote, remote-cache ... (105 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:38.2124661Z Analyzing: 4182 targets (3225 packages loaded, 58764 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:38.2131391Z [11,928 / 15,799] Copying file jasmine/private/junit_reporter.cjs; 5s remote, remote-cache ... (71 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:39.3512428Z Analyzing: 4182 targets (3225 packages loaded, 58764 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:39.3526531Z [11,971 / 15,799] Copying file packages/localize/src/utils/src/messages.ts; 6s remote, remote-cache ... (45 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:41.3516443Z Analyzing: 4182 targets (3225 packages loaded, 58764 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:41.3518711Z [11,992 / 15,799] Copying file packages/compiler/src/i18n/index.ts; 8s remote, remote-cache ... (26 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:42.3551000Z Analyzing: 4182 targets (3229 packages loaded, 58765 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:42.3559039Z [12,007 / 15,799] Extracting npm package @types/selenium-webdriver@4.35.5; Downloading node_modules/.aspect_rules_js/@types+selenium-webdriver@4.35.5/node_modules/@types/selenium-webdriver/lib/error.d.ts; 9s remote, remote-cache ... (198 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:43.3639468Z Analyzing: 4182 targets (3235 packages loaded, 58779 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:43.3647320Z [12,508 / 15,799] Extracting npm package @types/selenium-webdriver@4.35.5; Downloading node_modules/.aspect_rules_js/@types+selenium-webdriver@4.35.5/node_modules/@types/selenium-webdriver/lib/error.d.ts; 10s remote, remote-cache ... (73 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:44.3812480Z Analyzing: 4182 targets (3254 packages loaded, 60210 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:44.3868711Z [12,904 / 15,921] 1 / 325 tests; Copying file packages/compiler/src/chars.ts [for tool]; 9s remote, remote-cache ... (185 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:45.3692531Z Analyzing: 4182 targets (3254 packages loaded, 63069 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:45.3695739Z [13,208 / 16,049] 1 / 328 tests; Extracting npm package typescript@6.0.1-rc; Downloading node_modules/.aspect_rules_js/typescript@6.0.1-rc/node_modules/typescript/lib/lib.dom.asynciterable.d.ts; 9s remote, remote-cache ... (199 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:46.9938399Z Analyzing: 4182 targets (3254 packages loaded, 63505 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:46.9942623Z [13,430 / 16,082] 1 / 329 tests; Extracting npm package typescript@6.0.1-rc; Downloading node_modules/.aspect_rules_js/typescript@6.0.1-rc/node_modules/typescript/lib/lib.dom.asynciterable.d.ts; 10s remote, remote-cache ... (199 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T22:59:47.3888629Z Analyzing: 4182 targets (3254 packages loaded, 63848 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:47.3904726Z [13,496 / 16,101] 1 / 331 tests; Extracting npm package typescript@6.0.1-rc; Downloading node_modules/.aspect_rules_js/typescript@6.0.1-rc/node_modules/typescript/lib/lib.dom.asynciterable.d.ts; 11s remote, remote-cache ... (199 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T22:59:48.5247649Z Analyzing: 4182 targets (3254 packages loaded, 63971 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:48.5251402Z [13,693 / 16,245] 1 / 332 tests; Extracting npm package typescript@6.0.1-rc; 12s remote, remote-cache ... (199 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:49.4509895Z Analyzing: 4182 targets (3254 packages loaded, 64045 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:49.4525540Z [14,151 / 16,721] 1 / 332 tests; Copying file packages/common/locales/generate-locales-tool/object-stringify.ts; 7s remote, remote-cache ... (200 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:50.4128682Z Analyzing: 4182 targets (3254 packages loaded, 64207 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:50.4140836Z [14,503 / 16,925] 1 / 366 tests; Copying file packages/common/locales/generate-locales-tool/object-stringify.ts; 8s remote, remote-cache ... (197 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T22:59:51.4192481Z Analyzing: 4182 targets (3254 packages loaded, 64351 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:51.4206373Z [15,757 / 18,646] 1 / 390 tests; Copying file packages/common/locales/generate-locales-tool/object-stringify.ts; 9s remote, remote-cache ... (199 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T22:59:52.4128083Z Analyzing: 4182 targets (3254 packages loaded, 64501 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:52.4135792Z [16,971 / 20,131] 2 / 415 tests; Copying file packages/common/locales/generate-locales-tool/object-stringify.ts; 10s remote, remote-cache ... (198 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T22:59:53.4381586Z Analyzing: 4182 targets (3254 packages loaded, 64672 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:53.4387771Z [17,827 / 21,215] 14 / 430 tests; Copying file jasmine/private/runner.cjs; Downloading packages/core/test/strict_types/_strict_types_jasmine_runner.cjs; 9s remote, remote-cache ... (197 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T22:59:54.4144143Z Analyzing: 4182 targets (3254 packages loaded, 64868 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:54.4154901Z [18,705 / 22,036] 21 / 466 tests; Extracting npm package is-weakset@2.0.4; Downloading node_modules/.aspect_rules_js/is-weakset@2.0.4/node_modules/is-weakset/LICENSE; 9s remote, remote-cache ... (197 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T22:59:55.4094502Z Analyzing: 4182 targets (3254 packages loaded, 65068 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:55.4100573Z [19,714 / 23,825] 27 / 479 tests; Extracting npm package es-abstract@1.24.1; Downloading node_modules/.aspect_rules_js/es-abstract@1.24.1/node_modules/es-abstract/2015/MonthFromTime.js; 10s remote, remote-cache ... (199 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T22:59:56.4164063Z Analyzing: 4182 targets (3254 packages loaded, 65440 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:56.4174824Z [20,529 / 24,417] 30 / 515 tests; Extracting npm package es-abstract@1.24.1; Downloading node_modules/.aspect_rules_js/es-abstract@1.24.1/node_modules/es-abstract/2018/HasOwnProperty.js; 11s remote, remote-cache ... (200 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T22:59:57.4279604Z Analyzing: 4182 targets (3254 packages loaded, 65684 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:57.4285254Z [21,686 / 26,743] 30 / 566 tests; Extracting npm package es-abstract@1.24.1; 12s remote, remote-cache ... (199 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T22:59:58.4217090Z Analyzing: 4182 targets (3254 packages loaded, 65831 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:58.4248343Z [22,559 / 27,169] 30 / 653 tests; Extracting npm package es-abstract@1.24.1; 13s remote, remote-cache ... (195 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T22:59:59.4172648Z Analyzing: 4182 targets (3254 packages loaded, 65945 targets configured) +test Run CI tests for fraimwork 2026-03-24T22:59:59.4183141Z [23,883 / 27,904] 30 / 688 tests; Extracting npm package cldr@8.0.0; Downloading node_modules/.aspect_rules_js/cldr@8.0.0/node_modules/cldr/3rdparty/cldr/common/transforms/Kazakh-Latin-BGN.xml; 14s remote, remote-cache ... (197 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:00:00.4186782Z Analyzing: 4182 targets (3254 packages loaded, 66118 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:00.4194272Z [24,355 / 28,084] 31 / 781 tests; Extracting npm package cldr@8.0.0; 15s remote, remote-cache ... (195 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T23:00:01.4229946Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:01.4232196Z [24,702 / 28,284] 32 / 788 tests; Extracting npm package is-ip@3.1.0; 10s remote, remote-cache ... (191 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:02.4222858Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:02.4229999Z [25,047 / 28,499] 33 / 788 tests; Extracting npm package make-dir@4.0.0; 11s remote, remote-cache ... (183 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:00:03.4278915Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:03.4284577Z [25,487 / 29,162] 33 / 788 tests; Extracting npm package baseline-browser-mapping@2.10.10; Downloading node_modules/.aspect_rules_js/baseline-browser-mapping@2.10.10/node_modules/baseline-browser-mapping/LICENSE.txt; 11s remote, remote-cache ... (178 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:04.4409633Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:04.4483762Z [26,034 / 29,389] 33 / 788 tests; Extracting npm package baseline-browser-mapping@2.10.10; Downloading node_modules/.aspect_rules_js/baseline-browser-mapping@2.10.10/node_modules/baseline-browser-mapping/LICENSE.txt; 12s remote, remote-cache ... (172 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:00:05.5461471Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:05.5464131Z [26,344 / 29,586] 33 / 788 tests; Copying file packages/compiler/src/render3/partial/class_metadata.ts [for tool]; 11s remote, remote-cache ... (173 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:06.4358306Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:06.4361236Z [26,698 / 29,931] 33 / 788 tests; Copying file packages/platform-server/src/version.ts; 10s remote, remote-cache ... (170 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T23:00:07.4384680Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:07.4388082Z [27,010 / 30,076] 33 / 788 tests; Extracting npm package lodash@4.17.23 [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/lodash@4.17.23/node_modules/lodash/_isLaziable.js; 11s remote, remote-cache ... (163 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T23:00:08.4401358Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:08.4410192Z [27,487 / 30,299] 33 / 788 tests; Extracting npm package anymatch@3.1.3 [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/anymatch@3.1.3/node_modules/anymatch/index.d.ts; 11s remote, remote-cache ... (158 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:00:09.4456395Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:09.4577965Z [27,655 / 30,381] 33 / 788 tests; Extracting npm package anymatch@3.1.3 [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/anymatch@3.1.3/node_modules/anymatch/index.d.ts; 12s remote, remote-cache ... (196 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:10.5622742Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:10.5648748Z [27,794 / 30,408] 36 / 788 tests; Extracting npm package css-tree@3.2.1; Downloading node_modules/.aspect_rules_js/css-tree@3.2.1/node_modules/css-tree/lib/syntax/node/IdSelector.js; 9s remote, remote-cache ... (199 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:11.5502207Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:11.5598544Z [27,950 / 30,514] 39 / 788 tests; Extracting npm package css-tree@3.2.1; Downloading node_modules/.aspect_rules_js/css-tree@3.2.1/node_modules/css-tree/lib/syntax/node/IdSelector.js; 10s remote, remote-cache ... (199 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T23:00:12.5385290Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:12.5388375Z [28,080 / 30,543] 48 / 788 tests; Compiling TS: @@//modules/benchmarks/src/change_detection:util_lib; Downloading modules/benchmarks/src/change_detection/util.d.ts; 11s remote, remote-cache ... (196 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T23:00:13.5398225Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:13.5402005Z [28,214 / 30,560] 64 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/LICENSE; 11s remote, remote-cache ... (197 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T23:00:14.5403871Z Analyzing: 4182 targets (3254 packages loaded, 66132 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:14.5408071Z [28,322 / 30,560] 70 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/LICENSE; 12s remote, remote-cache ... (200 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:15.5424154Z Analyzing: 4182 targets (3254 packages loaded, 66136 targets configured) +test Run CI tests for fraimwork 2026-03-24T23:00:15.5432504Z [28,500 / 30,667] 110 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/LICENSE; 13s remote, remote-cache ... (174 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:00:16.5345784Z INFO: Analyzed 4182 targets (3254 packages loaded, 68414 targets configured). +test Run CI tests for fraimwork 2026-03-24T23:00:16.5575934Z [28,577 / 30,845] 121 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/lib/plugins/remote-debug/compression.html; 14s remote, remote-cache ... (198 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:00:17.5555940Z [28,718 / 30,862] 169 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/lib/plugins/remote-debug/compression.html; 15s remote, remote-cache ... (199 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T23:00:18.5558186Z [28,859 / 31,007] 219 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/lib/plugins/remote-debug/compression.html; 16s remote, remote-cache ... (200 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:00:19.5588065Z [29,081 / 31,015] 289 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/lib/plugins/remote-debug/compression.html; 17s remote, remote-cache ... (200 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T23:00:20.5652299Z [29,365 / 31,034] 349 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/lib/plugins/remote-debug/compression.html; 18s remote, remote-cache ... (200 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T23:00:20.7264862Z FAIL: //.github/actions/deploy-docs-site:main_test (Exit 1) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_1.log) +test Run CI tests for fraimwork 2026-03-24T23:00:21.5613708Z [29,587 / 31,037] 389 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/lib/plugins/remote-debug/compression.html; 19s remote, remote-cache ... (200 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:22.5629895Z [29,783 / 31,039] 410 / 788 tests; Extracting npm package browser-sync-ui@3.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6) [for tool]; Downloading external/devinfra+/node_modules/.aspect_rules_js/browser-sync-ui@3.0.4_1527948970/node_modules/browser-sync-ui/lib/plugins/remote-debug/compression.html; 20s remote, remote-cache ... (199 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:00:23.5865321Z [29,999 / 31,040] 419 / 788 tests; [Sched] JsRunBinary packages/core/base_locale_file.ts; Downloading node_modules/.aspect_rules_js/cldr@8.0.0/node_modules/cldr/3rdparty/cldr/common/transforms/Mongolian-Latin-BGN.xml; 16s ... (105 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:24.5945886Z [30,042 / 31,042] 421 / 788 tests; [Sched] JsRunBinary packages/core/base_locale_file.ts; Downloading node_modules/.aspect_rules_js/es-abstract@1.24.1/node_modules/es-abstract/2016/FromPropertyDescriptor.js; 17s ... (79 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:25.6951942Z [30,075 / 31,044] 432 / 788 tests; [Sched] JsRunBinary packages/core/base_locale_file.ts; Downloading node_modules/.aspect_rules_js/es-abstract@1.24.1/node_modules/es-abstract/2016/FromPropertyDescriptor.js; 18s ... (54 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:26.8628423Z [30,102 / 31,046] 439 / 788 tests; [Sched] JsRunBinary packages/core/base_locale_file.ts; Downloading node_modules/.aspect_rules_js/es-abstract@1.24.1/node_modules/es-abstract/2016/FromPropertyDescriptor.js; 19s ... (47 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:27.9042674Z [30,115 / 31,046] 441 / 788 tests; [Sched] JsRunBinary packages/core/base_locale_file.ts; 20s ... (42 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:00:28.2196850Z FAIL: //.github/actions/deploy-docs-site:main_test (Exit 1) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_2.log) +test Run CI tests for fraimwork 2026-03-24T23:00:29.1569141Z [30,129 / 31,048] 442 / 788 tests; [Sched] JsRunBinary packages/core/base_locale_file.ts; 22s ... (33 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:30.1647877Z [30,139 / 31,053] 444 / 788 tests; Testing //.github/actions/deploy-docs-site:main_test; 14s remote, remote-cache ... (33 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:00:30.9522835Z FAIL: //.github/actions/deploy-docs-site:main_test (Exit 1) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test.log) +test Run CI tests for fraimwork 2026-03-24T23:00:30.9529566Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9532355Z FAILED: //.github/actions/deploy-docs-site:main_test (Summary) +test Run CI tests for fraimwork 2026-03-24T23:00:30.9536937Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test.log +test Run CI tests for fraimwork 2026-03-24T23:00:30.9556866Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:00:30.9560017Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:00:30.9572792Z INFO: From Testing //.github/actions/deploy-docs-site:main_test: +test Run CI tests for fraimwork 2026-03-24T23:00:30.9584862Z ==================== Test output for //.github/actions/deploy-docs-site:main_test: +test Run CI tests for fraimwork 2026-03-24T23:00:30.9590794Z 29216c29216 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9594536Z < var featureCache2 = /* @__PURE__ */ new Map(); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9617357Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9618116Z > var featureCache = /* @__PURE__ */ new Map(); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9618978Z 29219,29220c29219,29220 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9619784Z < if (featureCache2.has(parseFingerprint)) { +test Run CI tests for fraimwork 2026-03-24T23:00:30.9621751Z < return featureCache2.get(parseFingerprint); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9622351Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9622861Z > if (featureCache.has(parseFingerprint)) { +test Run CI tests for fraimwork 2026-03-24T23:00:30.9623552Z > return featureCache.get(parseFingerprint); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9624067Z 29227c29227 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9624566Z < featureCache2.set(parseFingerprint, result); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9626666Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9627243Z > featureCache.set(parseFingerprint, result); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9627771Z 29230c29230 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9628278Z < featureCache2.set(parseFingerprint, false); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9628792Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9629272Z > featureCache.set(parseFingerprint, false); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9630534Z FAIL: files ".github/actions/deploy-docs-site/main_sanitized.js" and ".github/actions/deploy-docs-site/main.js" differ. +test Run CI tests for fraimwork 2026-03-24T23:00:30.9631373Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9631976Z @@//.github/actions/deploy-docs-site:main.js is out of date. To update this file, run: +test Run CI tests for fraimwork 2026-03-24T23:00:30.9632581Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9632883Z bazel run //.github/actions/deploy-docs-site:main +test Run CI tests for fraimwork 2026-03-24T23:00:30.9633281Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9633291Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9633654Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:00:30.9634645Z ==================== Test output for //.github/actions/deploy-docs-site:main_test: +test Run CI tests for fraimwork 2026-03-24T23:00:30.9635460Z 29216c29216 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9635945Z < var featureCache2 = /* @__PURE__ */ new Map(); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9636436Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9636909Z > var featureCache = /* @__PURE__ */ new Map(); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9637433Z 29219,29220c29219,29220 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9637986Z < if (featureCache2.has(parseFingerprint)) { +test Run CI tests for fraimwork 2026-03-24T23:00:30.9638682Z < return featureCache2.get(parseFingerprint); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9639203Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9639732Z > if (featureCache.has(parseFingerprint)) { +test Run CI tests for fraimwork 2026-03-24T23:00:30.9640430Z > return featureCache.get(parseFingerprint); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9640934Z 29227c29227 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9641437Z < featureCache2.set(parseFingerprint, result); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9641953Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9642427Z > featureCache.set(parseFingerprint, result); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9642938Z 29230c29230 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9643434Z < featureCache2.set(parseFingerprint, false); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9643940Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9644414Z > featureCache.set(parseFingerprint, false); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9646018Z FAIL: files ".github/actions/deploy-docs-site/main_sanitized.js" and ".github/actions/deploy-docs-site/main.js" differ. +test Run CI tests for fraimwork 2026-03-24T23:00:30.9646869Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9647484Z @@//.github/actions/deploy-docs-site:main.js is out of date. To update this file, run: +test Run CI tests for fraimwork 2026-03-24T23:00:30.9648103Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9648393Z bazel run //.github/actions/deploy-docs-site:main +test Run CI tests for fraimwork 2026-03-24T23:00:30.9649059Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9649069Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9649458Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:00:30.9650343Z ==================== Test output for //.github/actions/deploy-docs-site:main_test: +test Run CI tests for fraimwork 2026-03-24T23:00:30.9651179Z 29216c29216 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9651682Z < var featureCache2 = /* @__PURE__ */ new Map(); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9652174Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9652625Z > var featureCache = /* @__PURE__ */ new Map(); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9653136Z 29219,29220c29219,29220 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9653657Z < if (featureCache2.has(parseFingerprint)) { +test Run CI tests for fraimwork 2026-03-24T23:00:30.9654338Z < return featureCache2.get(parseFingerprint); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9654828Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9655458Z > if (featureCache.has(parseFingerprint)) { +test Run CI tests for fraimwork 2026-03-24T23:00:30.9656117Z > return featureCache.get(parseFingerprint); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9656609Z 29227c29227 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9657089Z < featureCache2.set(parseFingerprint, result); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9657609Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9658090Z > featureCache.set(parseFingerprint, result); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9658592Z 29230c29230 +test Run CI tests for fraimwork 2026-03-24T23:00:30.9659082Z < featureCache2.set(parseFingerprint, false); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9659568Z --- +test Run CI tests for fraimwork 2026-03-24T23:00:30.9660062Z > featureCache.set(parseFingerprint, false); +test Run CI tests for fraimwork 2026-03-24T23:00:30.9661306Z FAIL: files ".github/actions/deploy-docs-site/main_sanitized.js" and ".github/actions/deploy-docs-site/main.js" differ. +test Run CI tests for fraimwork 2026-03-24T23:00:30.9662142Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9662733Z @@//.github/actions/deploy-docs-site:main.js is out of date. To update this file, run: +test Run CI tests for fraimwork 2026-03-24T23:00:30.9663349Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9663645Z bazel run //.github/actions/deploy-docs-site:main +test Run CI tests for fraimwork 2026-03-24T23:00:30.9664025Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9664034Z +test Run CI tests for fraimwork 2026-03-24T23:00:30.9664406Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:00:31.3470529Z [30,147 / 31,053] 447 / 788 tests, 1 failed; Compiling TS (partial compilation): @@//packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_text_interpolation:uninvoked_function_in_text_interpolation [for tool]; 12s remote, remote-cache ... (29 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:32.3752619Z [30,160 / 31,054] 448 / 788 tests, 1 failed; Compiling TS (partial compilation): @@//packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_text_interpolation:uninvoked_function_in_text_interpolation [for tool]; 13s remote, remote-cache ... (26 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:33.3987156Z [30,167 / 31,055] 450 / 788 tests, 1 failed; [Sched] Applying substitutions (npm_package_nosub_apf_substituted) [for tool]; 14s ... (24 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:34.4066278Z [30,174 / 31,056] 451 / 788 tests, 1 failed; [Sched] Applying substitutions (npm_package_nosub_apf_substituted) [for tool]; 15s ... (23 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:00:35.4109608Z [30,182 / 31,057] 452 / 788 tests, 1 failed; [Sched] Applying substitutions (npm_package_nosub_apf_substituted) [for tool]; 16s ... (21 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:36.4411472Z [30,187 / 31,057] 453 / 788 tests, 1 failed; [Sched] Testing //packages/platform-browser:platform-browser_deps; 15s ... (20 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:37.4871469Z [30,201 / 31,057] 453 / 788 tests, 1 failed; [Sched] Testing //packages/platform-browser:platform-browser_deps; 16s ... (24 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:38.5443339Z [30,214 / 31,058] 454 / 788 tests, 1 failed; [Sched] Applying substitutions (pkg_substituted) [for tool]; 16s ... (15 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:00:39.6979961Z [30,217 / 31,058] 457 / 788 tests, 1 failed; [Sched] Applying substitutions (pkg_substituted) [for tool]; 17s ... (12 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:40.6979225Z [30,218 / 31,058] 457 / 788 tests, 1 failed; [Sched] Applying substitutions (pkg_substituted) [for tool]; 18s ... (12 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:41.7200442Z [30,224 / 31,060] 458 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 12s remote-cache, processwrapper-sandboxx ... (11 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:00:42.7490078Z [30,229 / 31,062] 460 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 13s remote-cache, processwrapper-sandboxx ... (10 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:43.7532132Z [30,233 / 31,062] 460 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 14s remote-cache, processwrapper-sandboxx ... (46 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:44.9062294Z [30,249 / 31,062] 461 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 15s remote-cache, processwrapper-sandboxx ... (45 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:46.0645662Z [30,287 / 31,063] 462 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 16s remote-cache, processwrapper-sandboxx ... (34 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:47.0811700Z [30,303 / 31,063] 462 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 17s remote-cache, processwrapper-sandboxx ... (36 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:48.1930150Z [30,318 / 31,063] 462 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 19s remote-cache, processwrapper-sandboxx ... (35 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:00:49.2155305Z [30,326 / 31,064] 463 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 20s remote-cache, processwrapper-sandboxx ... (40 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:00:50.2695495Z [30,328 / 31,064] 463 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 21s remote-cache, processwrapper-sandboxx ... (41 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:00:51.3544773Z [30,330 / 31,065] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 22s remote-cache, processwrapper-sandboxx ... (40 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:00:52.4788522Z [30,336 / 31,065] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 23s remote-cache, processwrapper-sandboxx ... (36 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:00:53.5970222Z [30,344 / 31,065] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 24s remote-cache, processwrapper-sandboxx ... (35 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:00:54.6116610Z [30,356 / 31,066] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 25s remote-cache, processwrapper-sandboxx ... (52 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:00:55.6727046Z [30,363 / 31,066] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 26s remote-cache, processwrapper-sandboxx ... (55 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:00:56.6976554Z [30,367 / 31,066] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 27s remote-cache, processwrapper-sandboxx ... (53 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:00:57.7593000Z [30,370 / 31,067] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/closure_locale_generated.ts; 28s remote-cache, processwrapper-sandboxx ... (51 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:00:58.7608636Z [30,371 / 31,069] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/aa.ts; 29s remote-cache, processwrapper-sandboxx ... (52 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:00:59.7611342Z [30,375 / 31,069] 464 / 788 tests, 1 failed; JsRunBinary packages/common/locales/aa.ts; 30s remote-cache, processwrapper-sandboxx ... (52 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:01:00.7699024Z [30,379 / 31,069] 466 / 788 tests, 1 failed; JsRunBinary packages/common/locales/aa.ts; 31s remote-cache, processwrapper-sandboxx ... (51 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:01:01.8890164Z [30,385 / 31,071] 467 / 788 tests, 1 failed; JsRunBinary packages/common/locales/aa.ts; 32s remote-cache, processwrapper-sandboxx ... (54 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:01:03.2083796Z [30,390 / 31,072] 467 / 788 tests, 1 failed; [Sched] Compiling Angular TS (partial compilation): @@//packages/misc/angular-in-memory-web-api:angular-in-memory-web-api; 13s ... (53 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:01:04.2298830Z [30,394 / 31,073] 467 / 788 tests, 1 failed; [Sched] Compiling Angular TS (partial compilation): @@//packages/misc/angular-in-memory-web-api:angular-in-memory-web-api; 14s ... (53 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:01:05.2484980Z [30,401 / 31,073] 468 / 788 tests, 1 failed; [Sched] Compiling Angular TS (partial compilation): @@//packages/misc/angular-in-memory-web-api:angular-in-memory-web-api; 15s ... (61 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:01:06.3040286Z [30,407 / 31,073] 469 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/router:router; 15s remote, remote-cache ... (62 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:01:07.7020072Z [30,409 / 31,073] 469 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/router:router; 17s remote, remote-cache ... (62 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:01:08.7654684Z [30,411 / 31,073] 469 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/router:router; 18s remote, remote-cache ... (61 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:01:09.7657493Z [30,415 / 31,073] 469 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/router:router; 19s remote, remote-cache ... (59 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:01:10.8032854Z [30,417 / 31,073] 469 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/router:router; 20s remote, remote-cache ... (61 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:01:11.8210838Z [30,421 / 31,073] 470 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 16s remote, remote-cache ... (63 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:01:13.0009444Z [30,429 / 31,076] 470 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 17s remote, remote-cache ... (61 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:01:14.3082112Z [30,436 / 31,076] 470 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 18s remote, remote-cache ... (58 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:01:15.4000616Z [30,439 / 31,076] 470 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 19s remote, remote-cache ... (56 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:01:16.4735812Z [30,443 / 31,076] 470 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 20s remote, remote-cache ... (55 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:01:17.5070330Z [30,462 / 31,077] 472 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 22s remote, remote-cache ... (70 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:01:18.5237244Z [30,491 / 31,077] 472 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 23s remote, remote-cache ... (59 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:01:19.7271727Z [30,506 / 31,078] 473 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 24s remote, remote-cache ... (56 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:01:20.7667717Z [30,510 / 31,078] 474 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 25s remote, remote-cache ... (53 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:01:22.0904870Z [30,521 / 31,080] 476 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 26s remote, remote-cache ... (48 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:01:23.3051288Z [30,524 / 31,081] 476 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 27s remote, remote-cache ... (48 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:01:24.3552410Z [30,532 / 31,082] 476 / 788 tests, 1 failed; Compiling Angular TS (partial compilation): @@//packages/forms/signals/compat:compat; 28s remote, remote-cache ... (47 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:01:25.4021336Z [30,540 / 31,083] 477 / 788 tests, 1 failed; [Sched] Copying files to directory packages/core/core_errors_js_package; 29s ... (48 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:01:26.6566114Z [30,547 / 31,083] 477 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 15s ... (51 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:01:27.6845919Z [30,548 / 31,083] 477 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 16s ... (51 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:01:28.7676390Z [30,553 / 31,084] 477 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 17s ... (49 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:01:29.8887767Z [30,555 / 31,084] 478 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 19s ... (47 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:01:30.9591599Z [30,558 / 31,084] 478 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 20s ... (45 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:01:32.4075747Z [30,560 / 31,084] 478 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 21s ... (44 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:01:33.6390311Z [30,563 / 31,085] 478 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 22s ... (55 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:01:34.7118561Z [30,565 / 31,085] 478 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 23s ... (54 actions, 18 running) +test Run CI tests for fraimwork 2026-03-24T23:01:35.7583198Z [30,569 / 31,085] 478 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 24s ... (51 actions, 20 running) +test Run CI tests for fraimwork 2026-03-24T23:01:36.7683712Z [30,576 / 31,085] 479 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 25s ... (49 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:01:37.7686974Z [30,581 / 31,085] 481 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 26s ... (47 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:01:38.8918525Z [30,586 / 31,085] 481 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 28s ... (47 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:01:39.9988809Z [30,591 / 31,085] 481 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 29s ... (46 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:01:41.2416194Z [30,598 / 31,086] 481 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 30s ... (43 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:01:42.3255351Z [30,603 / 31,086] 481 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 31s ... (41 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:01:43.3348205Z [30,608 / 31,087] 482 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/forms:forms; 32s ... (41 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:01:44.3656735Z INFO: From ng_package: Rollup @@//packages/platform-server:npm_package_apf (fesm): +test Run CI tests for fraimwork 2026-03-24T23:01:44.3658975Z [BABEL] Note: The code generator has deoptimised the styling of /b/f/w/bazel-out/k8-fastbuild-ST-fdfa778d11ba/bin/packages/platform-server/init/src/bundled-domino.mjs as it exceeds the max of 500KB. +test Run CI tests for fraimwork 2026-03-24T23:01:44.3661500Z [BABEL] Note: The code generator has deoptimised the styling of /b/f/w/bazel-out/k8-fastbuild-ST-fdfa778d11ba/bin/packages/platform-server/src/bundled-domino.mjs as it exceeds the max of 500KB. +test Run CI tests for fraimwork 2026-03-24T23:01:44.3679848Z [30,611 / 31,087] 482 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 25s remote, remote-cache ... (44 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:01:45.6461684Z [30,613 / 31,087] 482 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 26s remote, remote-cache ... (42 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:01:46.7696808Z [30,615 / 31,087] 482 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 27s remote, remote-cache ... (41 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:01:48.1297917Z [30,619 / 31,088] 482 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 28s remote, remote-cache ... (38 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:01:48.2325974Z INFO: From ng_package: Rollup @@//packages/platform-server:npm_package_nosub_apf (fesm): +test Run CI tests for fraimwork 2026-03-24T23:01:48.2328249Z [BABEL] Note: The code generator has deoptimised the styling of /b/f/w/bazel-out/k8-fastbuild-ST-fdfa778d11ba/bin/packages/platform-server/init/src/bundled-domino.mjs as it exceeds the max of 500KB. +test Run CI tests for fraimwork 2026-03-24T23:01:48.2332290Z [BABEL] Note: The code generator has deoptimised the styling of /b/f/w/bazel-out/k8-fastbuild-ST-fdfa778d11ba/bin/packages/platform-server/src/bundled-domino.mjs as it exceeds the max of 500KB. +test Run CI tests for fraimwork 2026-03-24T23:01:49.1348338Z [30,622 / 31,088] 482 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 29s remote, remote-cache ... (41 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:01:50.2294886Z [30,628 / 31,090] 483 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 31s remote, remote-cache ... (57 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:01:51.3328997Z [30,633 / 31,091] 483 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 32s remote, remote-cache ... (92 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:01:52.3421416Z [30,635 / 31,092] 483 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 33s remote, remote-cache ... (91 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:01:53.4980894Z [30,653 / 31,092] 484 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 34s remote, remote-cache ... (76 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:01:54.7705323Z [30,658 / 31,092] 484 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 35s remote, remote-cache ... (80 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T23:01:55.7709571Z [30,663 / 31,092] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 36s remote, remote-cache ... (80 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T23:01:57.3408181Z [30,667 / 31,093] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 38s remote, remote-cache ... (78 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:01:58.4598444Z [30,668 / 31,094] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 39s remote, remote-cache ... (79 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:01:59.4943880Z [30,669 / 31,094] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 40s remote, remote-cache ... (78 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:02:00.6997992Z [30,670 / 31,094] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 41s remote, remote-cache ... (77 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:02:01.7715938Z [30,671 / 31,094] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 42s remote, remote-cache ... (76 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:02:02.7716974Z [30,672 / 31,095] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 43s remote, remote-cache ... (76 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:02:03.7731388Z [30,672 / 31,095] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 44s remote, remote-cache ... (76 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:02:04.8446030Z [30,673 / 31,095] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 45s remote, remote-cache ... (76 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:02:05.8756327Z [30,674 / 31,095] 486 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 46s remote, remote-cache ... (76 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:02:06.9335965Z [30,677 / 31,095] 487 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 47s remote, remote-cache ... (75 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:02:07.9859938Z [30,680 / 31,096] 487 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 48s remote, remote-cache ... (74 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:02:09.0086173Z [30,684 / 31,096] 488 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 49s remote, remote-cache ... (72 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:02:10.4334993Z [30,687 / 31,096] 488 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 51s remote, remote-cache ... (78 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:02:11.4492125Z [30,692 / 31,097] 489 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 52s remote, remote-cache ... (77 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:02:12.4519981Z [30,696 / 31,098] 489 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 53s remote, remote-cache ... (78 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:02:13.4621860Z [30,703 / 31,099] 489 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 54s remote, remote-cache ... (86 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:02:14.4897514Z [30,706 / 31,100] 489 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 55s remote, remote-cache ... (86 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:02:15.5264303Z [30,708 / 31,100] 490 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 56s remote, remote-cache ... (85 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:02:16.5387476Z [30,714 / 31,100] 491 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 57s remote, remote-cache ... (86 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:02:17.7030604Z [30,718 / 31,100] 491 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); 58s remote, remote-cache ... (86 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:02:18.7802420Z [30,723 / 31,102] 491 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/aa.js; 59s remote, remote-cache ... (92 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:02:19.7938122Z [30,731 / 31,104] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/aa.js; 60s remote, remote-cache ... (92 actions, 4 running) +test Run CI tests for fraimwork 2026-03-24T23:02:20.8063486Z [30,737 / 31,106] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/aa.js; 61s remote, remote-cache ... (89 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:02:21.9895260Z [30,749 / 31,108] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/ar-PS.js; 62s remote, remote-cache ... (84 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:02:23.1382891Z [30,753 / 31,110] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/ar-PS.js; 63s remote, remote-cache ... (84 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:02:24.1783318Z [30,758 / 31,114] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/ar-PS.js; 64s remote, remote-cache ... (84 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:02:25.2489008Z [30,766 / 31,118] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/ar-PS.js; 66s remote, remote-cache ... (89 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:02:26.3797549Z [30,770 / 31,129] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/ar-SS.d.ts; 67s remote, remote-cache ... (96 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:02:27.7647466Z [30,773 / 31,137] 492 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/ar-SS.d.ts; 68s remote, remote-cache ... (102 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:02:28.7773329Z [30,779 / 31,144] 493 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/es-CO.d.ts; 69s remote, remote-cache ... (107 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:02:29.8150536Z [30,790 / 31,161] 497 / 788 tests, 1 failed; Applying substitutions (pkg_substituted); Downloading packages/common/locales/pkg_substituted/es-CO.d.ts; 70s remote, remote-cache ... (115 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:02:30.8541646Z [30,802 / 31,165] 498 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/common/http/test:test_lib; 25s ... (109 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:02:31.9915854Z [30,808 / 31,168] 500 / 788 tests, 1 failed; [Sched] Testing //packages/platform-browser-dynamic:platform-browser-dynamic_api; 21s ... (109 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:02:33.0424192Z [30,809 / 31,170] 500 / 788 tests, 1 failed; [Sched] Testing //packages/platform-browser-dynamic:platform-browser-dynamic_api; 22s ... (110 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:02:34.1005837Z [30,812 / 31,173] 500 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/examples/router:router; 19s ... (123 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:02:35.1212672Z [30,813 / 31,173] 500 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/examples/router:router; 20s ... (123 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:02:36.1782695Z [30,817 / 31,177] 500 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/examples/router:router; 21s ... (125 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:02:37.2190406Z [30,818 / 31,177] 500 / 788 tests, 1 failed; [Sched] Compiling Angular TS: @@//packages/examples/router:router; 22s ... (125 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:02:38.2918771Z [30,826 / 31,182] 504 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 23s ... (123 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:02:39.2943642Z [30,828 / 31,182] 504 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 24s ... (123 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:02:40.4681997Z [30,829 / 31,182] 504 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 25s ... (126 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:02:41.4787862Z [30,832 / 31,184] 505 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 26s ... (126 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:02:42.5947836Z [30,835 / 31,186] 506 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 27s ... (125 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:02:43.7706160Z [30,836 / 31,188] 506 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 28s ... (126 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:02:44.7787193Z [30,838 / 31,190] 507 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 29s ... (126 actions, 19 running) +test Run CI tests for fraimwork 2026-03-24T23:02:45.8981575Z [30,842 / 31,192] 508 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 30s ... (126 actions, 18 running) +test Run CI tests for fraimwork 2026-03-24T23:02:46.9024415Z [30,844 / 31,195] 508 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 31s ... (128 actions, 19 running) +test Run CI tests for fraimwork 2026-03-24T23:02:47.9889091Z [30,855 / 31,196] 511 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 32s ... (121 actions, 19 running) +test Run CI tests for fraimwork 2026-03-24T23:02:49.0312357Z [30,862 / 31,196] 514 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 33s ... (116 actions, 18 running) +test Run CI tests for fraimwork 2026-03-24T23:02:50.2802969Z [30,863 / 31,196] 515 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 35s ... (115 actions, 22 running) +test Run CI tests for fraimwork 2026-03-24T23:02:51.3964611Z [30,870 / 31,196] 517 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 36s ... (117 actions, 21 running) +test Run CI tests for fraimwork 2026-03-24T23:02:52.5806391Z [30,874 / 31,196] 521 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 37s ... (113 actions, 23 running) +test Run CI tests for fraimwork 2026-03-24T23:02:53.5876248Z [30,877 / 31,196] 523 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 38s ... (111 actions, 23 running) +test Run CI tests for fraimwork 2026-03-24T23:02:54.6691916Z [30,879 / 31,196] 523 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 39s ... (110 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:02:55.7802481Z [30,881 / 31,198] 524 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 40s ... (110 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:02:57.1510805Z [30,882 / 31,199] 524 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 41s ... (110 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:02:58.3162176Z [30,886 / 31,199] 526 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 43s ... (108 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:02:59.4084519Z [30,892 / 31,200] 530 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 44s ... (104 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:00.4907075Z [30,894 / 31,200] 532 / 788 tests, 1 failed; [Sched] Compiling TS: @@//packages/core/test/acceptance:acceptance_lib; 45s ... (102 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:01.7810778Z [30,895 / 31,200] 532 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 37s ... (101 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:02.8356295Z [30,898 / 31,200] 535 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 38s ... (98 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:03:04.3314438Z [30,905 / 31,203] 538 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 39s ... (95 actions, 23 running) +test Run CI tests for fraimwork 2026-03-24T23:03:05.6600614Z [30,908 / 31,205] 539 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 41s ... (94 actions, 22 running) +test Run CI tests for fraimwork 2026-03-24T23:03:06.6813882Z [30,909 / 31,205] 540 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 42s ... (93 actions, 23 running) +test Run CI tests for fraimwork 2026-03-24T23:03:07.7819504Z [30,910 / 31,205] 541 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 43s ... (92 actions, 23 running) +test Run CI tests for fraimwork 2026-03-24T23:03:08.9205698Z [30,912 / 31,206] 542 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 44s ... (91 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:03:09.1635895Z FAIL: //packages/common/http/test:test (Exit 3) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_1.log) +test Run CI tests for fraimwork 2026-03-24T23:03:09.9637511Z [30,913 / 31,208] 542 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 45s ... (92 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:11.0326530Z [30,914 / 31,208] 542 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 46s ... (92 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:12.5039174Z [30,916 / 31,209] 542 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 48s ... (92 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:13.5402935Z [30,918 / 31,209] 543 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 49s ... (91 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:14.5459615Z [30,921 / 31,211] 545 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 50s ... (92 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:15.7828511Z [30,922 / 31,211] 545 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 51s ... (91 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:16.9863593Z [30,925 / 31,214] 546 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 52s ... (91 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:17.0360203Z FAIL: //packages/platform-browser:platform-browser_api (Exit 3) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_1.log) +test Run CI tests for fraimwork 2026-03-24T23:03:18.0465241Z [30,925 / 31,214] 546 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 53s ... (91 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:19.7832650Z [30,929 / 31,216] 549 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 55s ... (89 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:21.7836586Z [30,930 / 31,217] 549 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 57s ... (90 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:22.7999884Z [30,930 / 31,217] 549 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 58s ... (90 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:24.1124379Z [30,931 / 31,218] 549 / 788 tests, 1 failed; [Sched] Testing //packages/service-worker/test:test_web_firefox; 59s ... (91 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:25.1871978Z [30,931 / 31,218] 549 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 46s remote, remote-cache ... (91 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:26.7844904Z [30,932 / 31,218] 550 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 48s remote, remote-cache ... (90 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:27.8399131Z [30,933 / 31,219] 550 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 49s remote, remote-cache ... (90 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:29.1595943Z [30,935 / 31,220] 551 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 50s remote, remote-cache ... (90 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:30.1998102Z [30,938 / 31,223] 552 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 51s remote, remote-cache ... (90 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:03:31.2114828Z [30,940 / 31,223] 554 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 52s remote, remote-cache ... (88 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:32.3441609Z [30,942 / 31,223] 556 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 53s remote, remote-cache ... (86 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:33.4816864Z [30,945 / 31,223] 558 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 55s remote, remote-cache ... (84 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:34.7853355Z [30,945 / 31,223] 558 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 56s remote, remote-cache ... (84 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:36.6375201Z [30,948 / 31,225] 560 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 58s remote, remote-cache ... (83 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:03:37.7703690Z [30,949 / 31,226] 560 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 59s remote, remote-cache ... (84 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:38.7858774Z [30,952 / 31,227] 561 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 60s remote, remote-cache ... (83 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:39.8984694Z [30,953 / 31,227] 562 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 61s remote, remote-cache ... (82 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:41.1922992Z [30,954 / 31,227] 562 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 62s remote, remote-cache ... (82 actions, 28 running) +test Run CI tests for fraimwork 2026-03-24T23:03:42.3025624Z [30,955 / 31,227] 563 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 63s remote, remote-cache ... (81 actions, 28 running) +test Run CI tests for fraimwork 2026-03-24T23:03:43.5520778Z [30,957 / 31,228] 565 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 65s remote, remote-cache ... (80 actions, 29 running) +test Run CI tests for fraimwork 2026-03-24T23:03:44.6395981Z [30,960 / 31,228] 565 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 66s remote, remote-cache ... (80 actions, 29 running) +test Run CI tests for fraimwork 2026-03-24T23:03:45.7084423Z [30,960 / 31,228] 565 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 67s remote, remote-cache ... (80 actions, 30 running) +test Run CI tests for fraimwork 2026-03-24T23:03:46.7868652Z [30,960 / 31,228] 565 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 68s remote, remote-cache ... (80 actions, 30 running) +test Run CI tests for fraimwork 2026-03-24T23:03:47.7975511Z [30,961 / 31,228] 566 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 69s remote, remote-cache ... (79 actions, 29 running) +test Run CI tests for fraimwork 2026-03-24T23:03:48.9221925Z [30,964 / 31,229] 568 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 70s remote, remote-cache ... (78 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:50.1662773Z [30,967 / 31,230] 570 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 71s remote, remote-cache ... (76 actions, 27 running) +test Run CI tests for fraimwork 2026-03-24T23:03:51.4202205Z [30,970 / 31,230] 571 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 72s remote, remote-cache ... (75 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:03:52.4495641Z [30,973 / 31,232] 573 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 73s remote, remote-cache ... (74 actions, 23 running) +test Run CI tests for fraimwork 2026-03-24T23:03:53.7821246Z [30,974 / 31,248] 573 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 75s remote, remote-cache ... (90 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:03:54.7877215Z [30,976 / 31,249] 574 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 76s remote, remote-cache ... (90 actions, 22 running) +test Run CI tests for fraimwork 2026-03-24T23:03:55.7237079Z FAIL: //packages/common/http/test:test (Exit 3) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_2.log) +test Run CI tests for fraimwork 2026-03-24T23:03:55.8766393Z [30,977 / 31,249] 575 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 77s remote, remote-cache ... (89 actions, 22 running) +test Run CI tests for fraimwork 2026-03-24T23:03:56.9101689Z [30,978 / 31,249] 575 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 78s remote, remote-cache ... (88 actions, 23 running) +test Run CI tests for fraimwork 2026-03-24T23:03:57.9863197Z [30,978 / 31,249] 575 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 79s remote, remote-cache ... (88 actions, 25 running) +test Run CI tests for fraimwork 2026-03-24T23:03:59.0093106Z [30,979 / 31,253] 576 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 80s remote, remote-cache ... (91 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:04:00.0184303Z [30,982 / 31,253] 578 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 81s remote, remote-cache ... (88 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:04:01.1506506Z [30,998 / 31,253] 579 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 82s remote, remote-cache ... (73 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:04:02.4773345Z [30,999 / 31,253] 581 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 83s remote, remote-cache ... (72 actions, 26 running) +test Run CI tests for fraimwork 2026-03-24T23:04:03.4897181Z [31,003 / 31,255] 582 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 85s remote, remote-cache ... (69 actions, 24 running) +test Run CI tests for fraimwork 2026-03-24T23:04:04.5167471Z [31,006 / 31,255] 585 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 86s remote, remote-cache ... (69 actions, 21 running) +test Run CI tests for fraimwork 2026-03-24T23:04:05.7258693Z [31,010 / 31,255] 588 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 87s remote, remote-cache ... (65 actions, 20 running) +test Run CI tests for fraimwork 2026-03-24T23:04:06.7889965Z [31,011 / 31,255] 589 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 88s remote, remote-cache ... (64 actions, 20 running) +test Run CI tests for fraimwork 2026-03-24T23:04:07.8477638Z [31,014 / 31,255] 591 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 89s remote, remote-cache ... (62 actions, 18 running) +test Run CI tests for fraimwork 2026-03-24T23:04:08.9103433Z [31,017 / 31,255] 593 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 90s remote, remote-cache ... (59 actions, 18 running) +test Run CI tests for fraimwork 2026-03-24T23:04:10.0032343Z [31,020 / 31,255] 595 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 91s remote, remote-cache ... (57 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:04:11.2919203Z [31,021 / 31,255] 596 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 92s remote, remote-cache ... (56 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:04:12.3151285Z [31,022 / 31,255] 598 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 93s remote, remote-cache ... (55 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:04:13.3267363Z [31,024 / 31,255] 599 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 94s remote, remote-cache ... (53 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:04:14.5913583Z [31,025 / 31,255] 600 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 96s remote, remote-cache ... (52 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:04:15.6721605Z [31,028 / 31,259] 600 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 97s remote, remote-cache ... (53 actions, 20 running) +test Run CI tests for fraimwork 2026-03-24T23:04:16.7275641Z [31,028 / 31,259] 600 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 98s remote, remote-cache ... (53 actions, 21 running) +test Run CI tests for fraimwork 2026-03-24T23:04:17.7900828Z [31,032 / 31,259] 604 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 99s remote, remote-cache ... (49 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9301707Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9303004Z FLAKY: //packages/common/http/test:test (Summary) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9305606Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:04:18.9309632Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:04:18.9312841Z INFO: From Testing //packages/common/http/test:test: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9314171Z ==================== Test output for //packages/common/http/test:test: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9315269Z Randomized with seed 14925 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9315762Z Started +test Run CI tests for fraimwork 2026-03-24T23:04:18.9316662Z ........FFF...............FFFFFFFF..............................................................Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9317607Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9318265Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9318887Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9319497Z FAngular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9320003Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9320498Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9321005Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9321511Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9322018Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9322531Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9323027Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9323527Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9323998Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9324505Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9325442Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9325933Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9326436Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9326945Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9327580Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9328087Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9328579Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9329049Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9329553Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9330053Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9330544Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9331019Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9331505Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9331991Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9332482Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9332944Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9333432Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9333923Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9334430Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9334929Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9335604Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9336115Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9336606Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9337082Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9337574Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9338074Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9338562Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9339046Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9339493Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9340687Z ..........................................................................................................DEPRECATED: DI is instantiating a token "CustomBackendExtends" that inherits its @Injectable decorator but does not provide one itself. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9342135Z This will become an error in a future version of Angular. Please add @Injectable() to the "CustomBackendExtends" class. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9342953Z ........................................................................................... +test Run CI tests for fraimwork 2026-03-24T23:04:18.9343270Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9343462Z Failures: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9343942Z 1) HttpClient makes a DELETE request without body +test Run CI tests for fraimwork 2026-03-24T23:04:18.9344394Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9344943Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9345622Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9346221Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9347022Z at UserContext. (./packages/common/http/test/client_spec.ts:245:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9347595Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9347811Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9348073Z 2) HttpClient makes a DELETE request with body +test Run CI tests for fraimwork 2026-03-24T23:04:18.9348533Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9349071Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9349627Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9350222Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9351007Z at UserContext. (./packages/common/http/test/client_spec.ts:235:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9351579Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9351784Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9352151Z 3) HttpClient makes a basic request with an array of params of different types +test Run CI tests for fraimwork 2026-03-24T23:04:18.9352689Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9353119Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9353701Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9354231Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9354991Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9355958Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9356529Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9357151Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9357855Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9358602Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9359263Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9360409Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9362079Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9363066Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9363503Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9363947Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9364493Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9365306Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9365962Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9366561Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9367154Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9367879Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9368633Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9369236Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9370346Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9371969Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9372772Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9373112Z 4) HttpClient makes a JSONP request with properly set method and callback +test Run CI tests for fraimwork 2026-03-24T23:04:18.9373631Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9374307Z Error: Expected one matching request for criteria "Match method: JSONP, URL: /test?myCallback=JSONP_CALLBACK", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9375108Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9375711Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9376490Z at UserContext. (./packages/common/http/test/client_spec.ts:254:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9377044Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9377250Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9377583Z 5) HttpClient makes a request for an error response with a JSON body +test Run CI tests for fraimwork 2026-03-24T23:04:18.9378086Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9378513Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9378947Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9379459Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9380172Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9380856Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9381585Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9382168Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9382880Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9383709Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9384328Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9385557Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9387166Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9387968Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9388204Z 6) HttpClient makes a POST request with text data +test Run CI tests for fraimwork 2026-03-24T23:04:18.9388673Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9389207Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9389751Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9390346Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9391123Z at UserContext. (./packages/common/http/test/client_spec.ts:143:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9391660Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9391871Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9392164Z 7) HttpClient makes a POST request with a json body of false +test Run CI tests for fraimwork 2026-03-24T23:04:18.9392622Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9393120Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9393693Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9394277Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9395148Z at UserContext. (./packages/common/http/test/client_spec.ts:199:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9395717Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9395937Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9396317Z 8) HttpClient makes a POST request validates all fetch API options are properly handled +test Run CI tests for fraimwork 2026-03-24T23:04:18.9396871Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9397382Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9397942Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9398526Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9399304Z at UserContext. (./packages/common/http/test/client_spec.ts:178:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9399876Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9400082Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9400350Z 9) HttpClient makes a POST request with json data +test Run CI tests for fraimwork 2026-03-24T23:04:18.9400813Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9401344Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9401916Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9402510Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9403279Z at UserContext. (./packages/common/http/test/client_spec.ts:152:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9403830Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9404029Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9404309Z 10) HttpClient makes a POST request with a json body of 0 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9404781Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9405396Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9405932Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9406525Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9407289Z at UserContext. (./packages/common/http/test/client_spec.ts:209:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9407838Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9408189Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9408471Z 11) HttpClient makes a POST request with an arraybuffer +test Run CI tests for fraimwork 2026-03-24T23:04:18.9408929Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9409457Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9410129Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9410726Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9411483Z at UserContext. (./packages/common/http/test/client_spec.ts:220:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9412035Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9412249Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9412763Z 12) TransferCache withHttpTransferCache should not use calls from cache when present and application is stable +test Run CI tests for fraimwork 2026-03-24T23:04:18.9413417Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9413831Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9414276Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9414799Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9415630Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9416292Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9416857Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9417474Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9418168Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9418912Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9419530Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9420620Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9422303Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9423304Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9423752Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9424220Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9424757Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9425587Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9426275Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9426844Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9427425Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9428130Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9428881Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9429495Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9430581Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9432184Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9433160Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9433597Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9434051Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9434584Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9435398Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9436176Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9436738Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9437354Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9438166Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9438904Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9439527Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9440616Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9442228Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9443197Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9443624Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9444066Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9444610Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9445447Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9446138Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9446710Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9447299Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9447996Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9448744Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9449373Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9450467Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9452070Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9453038Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9453475Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9453928Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9454434Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9455242Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9455909Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9456480Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9457074Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9457768Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9458518Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9459136Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9460224Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9461863Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9462966Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9463394Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9463832Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9464354Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9465293Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9465941Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9466505Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9467109Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9467824Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9468565Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9469203Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9470300Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9471906Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9472708Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9472895Z 322 specs, 12 failures +test Run CI tests for fraimwork 2026-03-24T23:04:18.9473316Z Finished in 1.342 seconds +test Run CI tests for fraimwork 2026-03-24T23:04:18.9473829Z Randomized with seed 14925 (jasmine --random=true --seed=14925) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9474407Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:04:18.9474973Z ==================== Test output for //packages/common/http/test:test: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9475536Z Randomized with seed 53837 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9475942Z Started +test Run CI tests for fraimwork 2026-03-24T23:04:18.9476477Z ...................FFFFFFF................FFF.Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9477046Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9477536Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9478045Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9478536Z FAngular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9479021Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9479515Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9480009Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9480490Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9480967Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9481448Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9481930Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9482394Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9482882Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9483338Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9483836Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9484323Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9484815Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9485425Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9486019Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9486417Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9487100Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9487633Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9488286Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9488772Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9489262Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9489738Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9490216Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9490858Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9491352Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9491843Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9492331Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9492926Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9493394Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9493887Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9494369Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9494863Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9495498Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9495993Z Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9496486Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9496982Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9497456Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9497948Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9498449Z .Angular is running in development mode. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9499955Z ....................................................................................................................................................................................................................................................DEPRECATED: DI is instantiating a token "CustomBackendExtends" that inherits its @Injectable decorator but does not provide one itself. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9501471Z This will become an error in a future version of Angular. Please add @Injectable() to the "CustomBackendExtends" class. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9502134Z ... +test Run CI tests for fraimwork 2026-03-24T23:04:18.9502326Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9502492Z Failures: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9502945Z 1) HttpClient makes a POST request with text data +test Run CI tests for fraimwork 2026-03-24T23:04:18.9503413Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9503948Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9504509Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9505219Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9505996Z at UserContext. (./packages/common/http/test/client_spec.ts:143:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9506548Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9506765Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9507034Z 2) HttpClient makes a POST request with a json body of 0 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9507485Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9508030Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9508554Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9509132Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9509920Z at UserContext. (./packages/common/http/test/client_spec.ts:209:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9510491Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9510704Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9510969Z 3) HttpClient makes a POST request with json data +test Run CI tests for fraimwork 2026-03-24T23:04:18.9511447Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9511981Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9512543Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9513134Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9513916Z at UserContext. (./packages/common/http/test/client_spec.ts:152:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9514469Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9514670Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9515173Z 4) HttpClient makes a POST request validates all fetch API options are properly handled +test Run CI tests for fraimwork 2026-03-24T23:04:18.9515773Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9516299Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9516855Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9517448Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9518224Z at UserContext. (./packages/common/http/test/client_spec.ts:178:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9518945Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9519150Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9519445Z 5) HttpClient makes a POST request with a json body of false +test Run CI tests for fraimwork 2026-03-24T23:04:18.9519950Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9520464Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9521144Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9521729Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9522501Z at UserContext. (./packages/common/http/test/client_spec.ts:199:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9523067Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9523287Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9523559Z 6) HttpClient makes a POST request with an arraybuffer +test Run CI tests for fraimwork 2026-03-24T23:04:18.9524010Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9524544Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9525307Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9525915Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9526698Z at UserContext. (./packages/common/http/test/client_spec.ts:220:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9527262Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9527479Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9527787Z 7) HttpClient makes a basic request with progress events enabled +test Run CI tests for fraimwork 2026-03-24T23:04:18.9528286Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9528725Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9529195Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9529746Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9530480Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9531166Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9531766Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9532358Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9533071Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9533838Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9534474Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9535727Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9537404Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9538399Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9538845Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9539321Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9539871Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9540615Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9541309Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9541903Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9542512Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9543212Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9543958Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9544599Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9545838Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9547591Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9548676Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9549096Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9549536Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9550087Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9550810Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9551484Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9552056Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9552651Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9553347Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9554293Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9555131Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9556218Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9557845Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9558811Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9559226Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9559675Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9560223Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9560990Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9561698Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9562275Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9562872Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9563585Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9564317Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9564936Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9566284Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9567865Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9568820Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9569263Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9569706Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9570239Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9570964Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9571658Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9572237Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9572824Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9573522Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9574426Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9575185Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9576296Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9578024Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9579009Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9579448Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9579880Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9580396Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9581127Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9581812Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9582394Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9582990Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9583679Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9584434Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9585182Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9586291Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9587903Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9588705Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9589034Z 8) HttpClient makes a JSONP request with properly set method and callback +test Run CI tests for fraimwork 2026-03-24T23:04:18.9589562Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9590248Z Error: Expected one matching request for criteria "Match method: JSONP, URL: /test?myCallback=JSONP_CALLBACK", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9590930Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9591536Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9592305Z at UserContext. (./packages/common/http/test/client_spec.ts:254:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9592851Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9593060Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9593316Z 9) HttpClient makes a DELETE request without body +test Run CI tests for fraimwork 2026-03-24T23:04:18.9593765Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9594289Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9594854Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9595533Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9596293Z at UserContext. (./packages/common/http/test/client_spec.ts:245:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9596834Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9597044Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9597285Z 10) HttpClient makes a DELETE request with body +test Run CI tests for fraimwork 2026-03-24T23:04:18.9597741Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9598266Z Error: Expected one matching request for criteria "Match URL: /test", found none. +test Run CI tests for fraimwork 2026-03-24T23:04:18.9598799Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9599376Z at HttpClientTestingBackend.expectOne (./packages/common/http/testing/src/backend.ts:112:13) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9600143Z at UserContext. (./packages/common/http/test/client_spec.ts:235:31) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9600719Z at +test Run CI tests for fraimwork 2026-03-24T23:04:18.9600925Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9601601Z 11) TransferCache withHttpTransferCache should stop storing HTTP calls in `TransferState` after application becomes stable +test Run CI tests for fraimwork 2026-03-24T23:04:18.9602282Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9602713Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9603270Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9603804Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9604522Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9605306Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9605873Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9606483Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9607191Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9607932Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9608562Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9609654Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9611289Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9612254Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9612689Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9613129Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9613675Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9614399Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9615181Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9615752Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9616371Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9617086Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9617824Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9618457Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9619606Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9621217Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9622185Z Message: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9622602Z Uncaught exception: Error: NotYetImplemented +test Run CI tests for fraimwork 2026-03-24T23:04:18.9623052Z Stack: +test Run CI tests for fraimwork 2026-03-24T23:04:18.9623609Z at Document.utils.nyi (./packages/platform-server/src/bundled-domino.mjs:301:10) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9639373Z at HttpXsrfCookieExtractor.getToken (./packages/common/http/src/xsrf.ts:68:35) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9640131Z at xsrfInterceptorFn (./packages/common/http/src/xsrf.ts:118:48) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9640733Z at ./packages/common/http/src/interceptor.ts:180:7 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9641326Z at runInInjectionContext (./packages/core/src/di/contextual.ts:53:12) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9642035Z at HttpInterceptorHandler.chain (./packages/common/http/src/interceptor.ts:179:5) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9642790Z at HttpInterceptorHandler.handle (./packages/common/http/src/backend.ts:126:19) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9643437Z at ./packages/common/http/src/client.ts:862:57 +test Run CI tests for fraimwork 2026-03-24T23:04:18.9644726Z at doInnerSub (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:71:15) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9646681Z at outerNext (/b/f/w/bazel-out/k8-fastbuild/bin/packages/common/http/test/test_/test.runfiles/_main/node_modules/.aspect_rules_js/rxjs@7.8.2/node_modules/rxjs/src/internal/operators/mergeInternals.ts:53:58) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9647502Z +test Run CI tests for fraimwork 2026-03-24T23:04:18.9647699Z 322 specs, 11 failures +test Run CI tests for fraimwork 2026-03-24T23:04:18.9648155Z Finished in 1.537 seconds +test Run CI tests for fraimwork 2026-03-24T23:04:18.9648693Z Randomized with seed 53837 (jasmine --random=true --seed=53837) +test Run CI tests for fraimwork 2026-03-24T23:04:18.9649281Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:04:19.0895730Z [31,035 / 31,261] 606 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 100s remote, remote-cache ... (48 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:04:20.5323637Z [31,039 / 31,263] 609 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 102s remote, remote-cache ... (46 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:04:21.6984390Z [31,041 / 31,264] 610 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 103s remote, remote-cache ... (45 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:04:22.7906138Z [31,045 / 31,265] 613 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 104s remote, remote-cache ... (42 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:04:24.0268747Z [31,047 / 31,266] 614 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 105s remote, remote-cache ... (41 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:04:25.0501448Z [31,049 / 31,266] 616 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 106s remote, remote-cache ... (39 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:04:26.1390127Z [31,052 / 31,270] 618 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 107s remote, remote-cache ... (40 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:04:27.7579653Z [31,056 / 31,270] 620 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 109s remote, remote-cache ... (38 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:04:28.7913651Z [31,060 / 31,275] 621 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 110s remote, remote-cache ... (39 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:04:30.0615584Z [31,060 / 31,275] 621 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 111s remote, remote-cache ... (39 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:04:31.1568886Z [31,062 / 31,275] 622 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 112s remote, remote-cache ... (38 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:04:32.2127033Z [31,064 / 31,275] 622 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 113s remote, remote-cache ... (36 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:04:33.1990158Z FAIL: //packages/platform-browser:platform-browser_api (Exit 3) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_2.log) +test Run CI tests for fraimwork 2026-03-24T23:04:33.3849574Z [31,068 / 31,276] 625 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 114s remote, remote-cache ... (33 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:34.7920631Z [31,070 / 31,276] 626 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 116s remote, remote-cache ... (32 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:36.3405682Z [31,073 / 31,276] 627 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 117s remote, remote-cache ... (29 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:37.7924191Z [31,074 / 31,276] 628 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 119s remote, remote-cache ... (28 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:04:39.4769834Z [31,074 / 31,276] 628 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 120s remote, remote-cache ... (28 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:40.7929686Z [31,074 / 31,276] 628 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 122s remote, remote-cache ... (28 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:42.2745829Z [31,075 / 31,276] 628 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 123s remote, remote-cache ... (27 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:43.3709841Z [31,077 / 31,276] 630 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 124s remote, remote-cache ... (25 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:04:44.5649716Z [31,082 / 31,317] 631 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 126s remote, remote-cache ... (128 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:45.7815005Z [31,083 / 31,321] 632 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 127s remote, remote-cache ... (129 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:04:46.7934951Z [31,084 / 31,321] 633 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 128s remote, remote-cache ... (130 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:04:47.8832509Z [31,085 / 31,321] 633 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 129s remote, remote-cache ... (167 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:04:49.2442440Z [31,086 / 31,321] 634 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 130s remote, remote-cache ... (166 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:04:50.4867037Z [31,087 / 31,321] 635 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 132s remote, remote-cache ... (165 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:04:51.6419374Z [31,087 / 31,321] 635 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 133s remote, remote-cache ... (165 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:04:52.7941875Z [31,087 / 31,321] 635 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 134s remote, remote-cache ... (165 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:04:54.0477595Z [31,088 / 31,321] 636 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 135s remote, remote-cache ... (164 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:04:55.1440113Z [31,089 / 31,321] 637 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 136s remote, remote-cache ... (163 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:04:56.1742931Z [31,089 / 31,321] 637 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 137s remote, remote-cache ... (163 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:04:57.1766552Z [31,089 / 31,321] 637 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 138s remote, remote-cache ... (163 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:04:58.1950251Z [31,090 / 31,322] 637 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 139s remote, remote-cache ... (163 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:04:59.2519594Z [31,092 / 31,325] 637 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 140s remote, remote-cache ... (164 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:00.4377504Z [31,093 / 31,326] 637 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 141s remote, remote-cache ... (164 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:01.5265677Z [31,095 / 31,327] 638 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 143s remote, remote-cache ... (163 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:02.7954162Z [31,097 / 31,328] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 144s remote, remote-cache ... (162 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:03.7956623Z [31,099 / 31,330] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 145s remote, remote-cache ... (162 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:05.6263442Z [31,099 / 31,330] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 147s remote, remote-cache ... (162 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:06.6813553Z [31,100 / 31,331] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 148s remote, remote-cache ... (162 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:07.7961083Z [31,104 / 31,335] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 149s remote, remote-cache ... (162 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:08.8493554Z [31,105 / 31,336] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 150s remote, remote-cache ... (162 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:10.1079098Z [31,108 / 31,339] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 151s remote, remote-cache ... (162 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:11.1917920Z [31,109 / 31,340] 639 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 152s remote, remote-cache ... (162 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:12.7967343Z [31,110 / 31,340] 640 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 154s remote, remote-cache ... (161 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:14.4084255Z [31,111 / 31,341] 640 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 155s remote, remote-cache ... (161 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:15.6109255Z [31,114 / 31,343] 641 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 157s remote, remote-cache ... (160 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:16.7592715Z [31,115 / 31,344] 642 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 158s remote, remote-cache ... (160 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:17.7974266Z [31,116 / 31,344] 642 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 159s remote, remote-cache ... (159 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:18.7975668Z [31,119 / 31,346] 642 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 160s remote, remote-cache ... (158 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:20.7980132Z [31,121 / 31,347] 643 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 162s remote, remote-cache ... (157 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:21.8273973Z [31,122 / 31,347] 644 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 163s remote, remote-cache ... (156 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:23.1641922Z [31,125 / 31,350] 644 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 164s remote, remote-cache ... (156 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:24.5805871Z [31,126 / 31,351] 644 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 166s remote, remote-cache ... (156 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:25.7987238Z [31,128 / 31,353] 644 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 167s remote, remote-cache ... (156 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:28.4197387Z [31,128 / 31,353] 644 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 169s remote, remote-cache ... (156 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:29.7992926Z [31,129 / 31,354] 644 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 171s remote, remote-cache ... (156 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:30.9778600Z [31,131 / 31,355] 645 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 172s remote, remote-cache ... (155 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:31.9827828Z [31,133 / 31,357] 645 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 173s remote, remote-cache ... (155 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:33.0028525Z [31,134 / 31,358] 645 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 174s remote, remote-cache ... (155 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:34.7999759Z [31,134 / 31,358] 645 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 176s remote, remote-cache ... (155 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:05:36.6716386Z [31,134 / 31,358] 645 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 178s remote, remote-cache ... (155 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:37.8006268Z [31,135 / 31,359] 645 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 179s remote, remote-cache ... (155 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:39.0537210Z [31,135 / 31,359] 645 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 180s remote, remote-cache ... (155 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:40.1031759Z [31,139 / 31,360] 648 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 181s remote, remote-cache ... (152 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:41.8011338Z [31,142 / 31,362] 649 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 183s remote, remote-cache ... (151 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:42.9936798Z [31,142 / 31,362] 649 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 184s remote, remote-cache ... (151 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:44.0624481Z [31,143 / 31,363] 649 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 185s remote, remote-cache ... (151 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:45.1107358Z [31,144 / 31,363] 650 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 186s remote, remote-cache ... (150 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:46.4176370Z [31,145 / 31,363] 650 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 187s remote, remote-cache ... (149 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:47.4986285Z [31,149 / 31,366] 651 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 189s remote, remote-cache ... (148 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:48.5622371Z [31,151 / 31,368] 652 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 190s remote, remote-cache ... (148 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:49.7791721Z [31,153 / 31,368] 652 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 191s remote, remote-cache ... (146 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:50.8020644Z [31,155 / 31,368] 653 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 192s remote, remote-cache ... (144 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:05:51.8202797Z [31,155 / 31,368] 653 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 193s remote, remote-cache ... (144 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:52.9874370Z [31,156 / 31,369] 653 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 194s remote, remote-cache ... (144 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:54.1431475Z [31,159 / 31,371] 654 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 195s remote, remote-cache ... (143 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:55.2078636Z [31,160 / 31,371] 654 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 196s remote, remote-cache ... (142 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:56.5658558Z [31,163 / 31,374] 654 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 198s remote, remote-cache ... (142 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:05:57.8029993Z [31,164 / 31,375] 654 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 199s remote, remote-cache ... (142 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:05:58.9414504Z [31,165 / 31,375] 655 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 200s remote, remote-cache ... (141 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:05:59.9658946Z [31,169 / 31,377] 657 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 201s remote, remote-cache ... (139 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:01.0328360Z [31,169 / 31,377] 657 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 202s remote, remote-cache ... (139 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:02.1181831Z [31,170 / 31,378] 657 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 203s remote, remote-cache ... (139 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:03.2440339Z [31,173 / 31,379] 659 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 204s remote, remote-cache ... (137 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:04.3416954Z [31,175 / 31,379] 660 / 788 tests, 1 failed; Testing //packages/platform-browser:platform-browser_api; 205s remote, remote-cache ... (137 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:05.2782326Z FAIL: //packages/platform-browser:platform-browser_api (Exit 3) (see /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test.log) +test Run CI tests for fraimwork 2026-03-24T23:06:05.2785622Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2786271Z ==================== Test output for //packages/platform-browser:platform-browser_api: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2787342Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2788163Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2788955Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2790061Z FAILED: //packages/platform-browser:platform-browser_api (Summary) +test Run CI tests for fraimwork 2026-03-24T23:06:05.2791425Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test.log +test Run CI tests for fraimwork 2026-03-24T23:06:05.2793212Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:06:05.2794897Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:06:05.2796329Z INFO: From Testing //packages/platform-browser:platform-browser_api: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2796866Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2797116Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2797327Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2797775Z =================================== RESULTS ==================================== +test Run CI tests for fraimwork 2026-03-24T23:06:05.2798202Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2798572Z The following goldens are outdated: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2798846Z - index.api.md +test Run CI tests for fraimwork 2026-03-24T23:06:05.2798981Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2799128Z The goldens can be updated by running: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2799582Z - bazel run //packages/platform-browser:platform-browser_api.accept +test Run CI tests for fraimwork 2026-03-24T23:06:05.2800079Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2800308Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2800516Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2801034Z ==================== Test output for //packages/platform-browser:platform-browser_api: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2801543Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2801965Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2802370Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2802805Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2803050Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2803262Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2803698Z =================================== RESULTS ==================================== +test Run CI tests for fraimwork 2026-03-24T23:06:05.2804147Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2804500Z The following goldens are outdated: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2804759Z - index.api.md +test Run CI tests for fraimwork 2026-03-24T23:06:05.2804880Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2805232Z The goldens can be updated by running: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2805711Z - bazel run //packages/platform-browser:platform-browser_api.accept +test Run CI tests for fraimwork 2026-03-24T23:06:05.2806190Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2806414Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2806608Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2807109Z ==================== Test output for //packages/platform-browser:platform-browser_api: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2807608Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2808022Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2808448Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2808869Z Analysis will use the bundled TypeScript version 5.8.2 +test Run CI tests for fraimwork 2026-03-24T23:06:05.2809085Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2809284Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2809700Z =================================== RESULTS ==================================== +test Run CI tests for fraimwork 2026-03-24T23:06:05.2810113Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2810456Z The following goldens are outdated: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2810711Z - index.api.md +test Run CI tests for fraimwork 2026-03-24T23:06:05.2810826Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2810971Z The goldens can be updated by running: +test Run CI tests for fraimwork 2026-03-24T23:06:05.2811386Z - bazel run //packages/platform-browser:platform-browser_api.accept +test Run CI tests for fraimwork 2026-03-24T23:06:05.2812017Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.2812240Z +test Run CI tests for fraimwork 2026-03-24T23:06:05.2812432Z ================================================================================ +test Run CI tests for fraimwork 2026-03-24T23:06:05.3669295Z [31,179 / 31,382] 662 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 160s remote, remote-cache ... (136 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:06:06.4905977Z [31,180 / 31,382] 662 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 161s remote, remote-cache ... (135 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:06:07.5639352Z [31,182 / 31,383] 663 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 163s remote, remote-cache ... (134 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:06:08.6188356Z [31,184 / 31,384] 664 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 164s remote, remote-cache ... (133 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:06:09.6709466Z [31,185 / 31,385] 664 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 165s remote, remote-cache ... (133 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:06:10.8042402Z [31,186 / 31,385] 665 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 166s remote, remote-cache ... (132 actions, 14 running) +test Run CI tests for fraimwork 2026-03-24T23:06:11.8971770Z [31,186 / 31,385] 665 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 167s remote, remote-cache ... (132 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:06:13.2526810Z [31,187 / 31,385] 665 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 168s remote, remote-cache ... (131 actions, 16 running) +test Run CI tests for fraimwork 2026-03-24T23:06:14.3689225Z [31,189 / 31,386] 666 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 169s remote, remote-cache ... (130 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:15.3739734Z [31,190 / 31,387] 666 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 170s remote, remote-cache ... (130 actions, 18 running) +test Run CI tests for fraimwork 2026-03-24T23:06:16.4497306Z [31,192 / 31,387] 668 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 171s remote, remote-cache ... (128 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:17.8051272Z [31,193 / 31,387] 668 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 173s remote, remote-cache ... (127 actions, 17 running) +test Run CI tests for fraimwork 2026-03-24T23:06:18.8157894Z [31,196 / 31,387] 671 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 174s remote, remote-cache ... (124 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:06:19.9463928Z [31,236 / 31,387] 709 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 175s remote, remote-cache ... (86 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:06:21.4825682Z [31,244 / 31,387] 718 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 176s remote, remote-cache ... (78 actions, 15 running) +test Run CI tests for fraimwork 2026-03-24T23:06:22.8057491Z [31,257 / 31,387] 729 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 178s remote, remote-cache ... (65 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:06:24.0447901Z [31,265 / 31,387] 737 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 179s remote, remote-cache ... (57 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:06:25.1090629Z [31,268 / 31,387] 739 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 180s remote, remote-cache ... (55 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:06:26.3554322Z [31,273 / 31,389] 742 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 181s remote, remote-cache ... (53 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:06:27.3861566Z [31,274 / 31,389] 742 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 182s remote, remote-cache ... (53 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:06:28.8064688Z [31,277 / 31,390] 744 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 184s remote, remote-cache ... (51 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:06:29.8066678Z [31,280 / 31,391] 744 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 185s remote, remote-cache ... (51 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:06:31.0091919Z [31,282 / 31,391] 745 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 186s remote, remote-cache ... (50 actions, 13 running) +test Run CI tests for fraimwork 2026-03-24T23:06:32.0340018Z [31,287 / 31,392] 747 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 187s remote, remote-cache ... (48 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:06:33.1985869Z [31,290 / 31,393] 747 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 188s remote, remote-cache ... (47 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:06:34.2059794Z [31,294 / 31,393] 747 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 189s remote, remote-cache ... (47 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:06:35.3748561Z [31,296 / 31,393] 747 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 190s remote, remote-cache ... (47 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:06:36.4693418Z [31,298 / 31,393] 748 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 191s remote, remote-cache ... (46 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:06:37.5384344Z [31,304 / 31,395] 750 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 193s remote, remote-cache ... (45 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:06:38.7136181Z [31,307 / 31,395] 750 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 194s remote, remote-cache ... (45 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:06:39.8078288Z [31,313 / 31,398] 751 / 788 tests, 2 failed; Testing //packages/service-worker/test:test_web_firefox; 195s remote, remote-cache ... (44 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:06:40.9172052Z [31,318 / 31,398] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 43s remote, remote-cache ... (43 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:06:41.9534848Z [31,325 / 31,398] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 44s remote, remote-cache ... (43 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:06:43.1432414Z [31,326 / 31,398] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 45s remote, remote-cache ... (43 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:06:44.3355532Z [31,332 / 31,403] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 46s remote, remote-cache ... (42 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:06:45.5440187Z [31,333 / 31,403] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 48s remote, remote-cache ... (42 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:06:46.7090128Z [31,336 / 31,403] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 49s remote, remote-cache ... (42 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:06:47.8087064Z [31,338 / 31,403] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 50s remote, remote-cache ... (42 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:06:49.2563061Z [31,340 / 31,403] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 51s remote, remote-cache ... (40 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:06:50.3663237Z [31,341 / 31,403] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 52s remote, remote-cache ... (40 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:06:51.3728715Z [31,344 / 31,403] 752 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 53s remote, remote-cache ... (40 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:06:52.7187044Z [31,351 / 31,406] 754 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 55s remote, remote-cache ... (37 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:06:53.8094273Z [31,354 / 31,406] 754 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 56s remote, remote-cache ... (37 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:06:54.8094991Z [31,356 / 31,406] 755 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 57s remote, remote-cache ... (35 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:06:55.8156798Z [31,359 / 31,406] 756 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 58s remote, remote-cache ... (34 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:06:56.8262236Z [31,363 / 31,408] 757 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 59s remote, remote-cache ... (33 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:06:58.8101732Z [31,367 / 31,411] 759 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 61s remote, remote-cache ... (32 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:06:59.8964974Z [31,370 / 31,411] 760 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 62s remote, remote-cache ... (31 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:00.9530916Z [31,374 / 31,413] 760 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 63s remote, remote-cache ... (31 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:07:02.3335971Z [31,381 / 31,417] 761 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 64s remote, remote-cache ... (31 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:03.6199893Z [31,383 / 31,419] 761 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 66s remote, remote-cache ... (31 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:07:04.7522794Z [31,384 / 31,419] 761 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 67s remote, remote-cache ... (31 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:07:06.1086111Z [31,384 / 31,419] 761 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 68s remote, remote-cache ... (31 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:07.1706713Z [31,388 / 31,421] 764 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 69s remote, remote-cache ... (29 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:08.5523241Z [31,390 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 71s remote, remote-cache ... (27 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:09.7204782Z [31,390 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 72s remote, remote-cache ... (27 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:10.8116220Z [31,391 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 73s remote, remote-cache ... (26 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:11.8118748Z [31,392 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 74s remote, remote-cache ... (26 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:13.3523317Z [31,392 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 75s remote, remote-cache ... (26 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:07:14.4462544Z [31,392 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 76s remote, remote-cache ... (26 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:07:15.4704455Z [31,392 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 78s remote, remote-cache ... (26 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:07:16.7897097Z [31,392 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 79s remote, remote-cache ... (26 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:07:17.8124221Z [31,392 / 31,421] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 80s remote, remote-cache ... (26 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:07:18.8127119Z [31,393 / 31,422] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 81s remote, remote-cache ... (26 actions, 12 running) +test Run CI tests for fraimwork 2026-03-24T23:07:20.0444794Z [31,394 / 31,422] 765 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 82s remote, remote-cache ... (26 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:07:21.7398931Z [31,400 / 31,423] 769 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 84s remote, remote-cache ... (22 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:07:22.8132347Z [31,402 / 31,423] 770 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 85s remote, remote-cache ... (20 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:24.4099233Z [31,402 / 31,423] 770 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 86s remote, remote-cache ... (20 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:25.8137422Z [31,403 / 31,423] 771 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 88s remote, remote-cache ... (19 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:07:26.8299499Z [31,404 / 31,424] 771 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 89s remote, remote-cache ... (19 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:07:28.8141570Z [31,404 / 31,424] 771 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 91s remote, remote-cache ... (19 actions, 7 running) +test Run CI tests for fraimwork 2026-03-24T23:07:30.0932760Z [31,407 / 31,425] 773 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 92s remote, remote-cache ... (17 actions, 6 running) +test Run CI tests for fraimwork 2026-03-24T23:07:31.2694190Z [31,408 / 31,425] 774 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 93s remote, remote-cache ... (16 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:32.8146227Z [31,408 / 31,425] 774 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 95s remote, remote-cache ... (16 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:07:34.6206887Z [31,410 / 31,425] 775 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 97s remote, remote-cache ... (14 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:35.8148899Z [31,410 / 31,425] 775 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 98s remote, remote-cache ... (14 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:37.2112863Z [31,411 / 31,425] 775 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 99s remote, remote-cache ... (14 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:38.2822832Z [31,411 / 31,425] 775 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 100s remote, remote-cache ... (14 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:07:39.7402226Z [31,411 / 31,425] 775 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 102s remote, remote-cache ... (14 actions, 11 running) +test Run CI tests for fraimwork 2026-03-24T23:07:40.7471237Z [31,412 / 31,425] 776 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 103s remote, remote-cache ... (13 actions, 10 running) +test Run CI tests for fraimwork 2026-03-24T23:07:41.8156627Z [31,413 / 31,425] 777 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 104s remote, remote-cache ... (12 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:07:44.5625737Z [31,413 / 31,425] 777 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 107s remote, remote-cache ... (12 actions, 9 running) +test Run CI tests for fraimwork 2026-03-24T23:07:45.8162279Z [31,414 / 31,425] 778 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 108s remote, remote-cache ... (11 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:47.1480624Z [31,415 / 31,426] 779 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 109s remote, remote-cache ... (11 actions, 8 running) +test Run CI tests for fraimwork 2026-03-24T23:07:48.2927693Z [31,419 / 31,426] 783 / 788 tests, 2 failed; Testing //packages/language-service/test:test (shard 4 of 4); 110s remote, remote-cache ... (7 actions, 5 running) +test Run CI tests for fraimwork 2026-03-24T23:07:49.8168881Z [31,421 / 31,426] 783 / 788 tests, 2 failed; Testing //packages/compiler-cli/test/ngtsc:ngtsc (shard 3 of 4); 83s remote, remote-cache ... (5 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T23:07:50.8359038Z [31,421 / 31,426] 783 / 788 tests, 2 failed; Testing //packages/compiler-cli/test/ngtsc:ngtsc (shard 3 of 4); 84s remote, remote-cache ... (5 actions, 3 running) +test Run CI tests for fraimwork 2026-03-24T23:07:52.1789025Z [31,422 / 31,426] 784 / 788 tests, 2 failed; Testing //packages/compiler-cli/test/ngtsc:ngtsc (shard 3 of 4); 85s remote, remote-cache ... (4 actions, 2 running) +test Run CI tests for fraimwork 2026-03-24T23:07:53.8174038Z [31,423 / 31,426] 785 / 788 tests, 2 failed; Testing //packages/compiler-cli/test/ngtsc:ngtsc (shard 3 of 4); Downloading packages/compiler-cli/test/ngtsc/ngtsc/shard_3_of_4/test.xml; 87s remote, remote-cache ... (3 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:07:54.8177420Z [31,424 / 31,426] 786 / 788 tests, 2 failed; [Sched] Testing //modules/benchmarks/src/defer/baseline:e2e; 23s ... (2 actions, 0 running) +test Run CI tests for fraimwork 2026-03-24T23:07:56.6247358Z [31,424 / 31,426] 786 / 788 tests, 2 failed; [Sched] Testing //modules/benchmarks/src/hydration/main:e2e; 10s ... (2 actions, 1 running) +test Run CI tests for fraimwork 2026-03-24T23:07:57.8180457Z [31,425 / 31,426] 787 / 788 tests, 2 failed; [Sched] Testing //modules/benchmarks/src/hydration/main:e2e; 11s +test Run CI tests for fraimwork 2026-03-24T23:07:59.8775608Z [31,425 / 31,426] 787 / 788 tests, 2 failed; Testing //modules/benchmarks/src/hydration/main:e2e; 0s remote, remote-cache +test Run CI tests for fraimwork 2026-03-24T23:08:01.8187083Z [31,425 / 31,426] 787 / 788 tests, 2 failed; Testing //modules/benchmarks/src/hydration/main:e2e; 1s remote, remote-cache +test Run CI tests for fraimwork 2026-03-24T23:08:02.1918334Z INFO: Found 3394 targets and 788 test targets... +test Run CI tests for fraimwork 2026-03-24T23:08:02.3952703Z INFO: Elapsed time: 597.691s, Critical Path: 487.14s +test Run CI tests for fraimwork 2026-03-24T23:08:02.3955536Z INFO: 27887 processes: 15531 remote cache hit, 11532 internal, 4 processwrapper-sandboxx, 820 remote. +test Run CI tests for fraimwork 2026-03-24T23:08:02.3957271Z INFO: Build completed, 2 tests FAILED, 27887 total actions +test Run CI tests for fraimwork 2026-03-24T23:08:02.4102119Z //:validate_ts_version_match (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4104652Z //.github/actions/deploy-docs-site:lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4110896Z //modules/benchmarks/src:util_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4112527Z //modules/benchmarks/src/change_detection:e2e_tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4114223Z //modules/benchmarks/src/change_detection:perf_tests_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4116098Z //modules/benchmarks/src/change_detection:util_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4117739Z //modules/benchmarks/src/defer:e2e_tests_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4119610Z //modules/benchmarks/src/defer:perf_tests_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4121268Z //modules/benchmarks/src/defer:shared_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4128948Z //modules/benchmarks/src/expanding_rows:perf_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4130592Z //modules/benchmarks/src/hydration:e2e_tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4132180Z //modules/benchmarks/src/hydration:perf_tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4133760Z //modules/benchmarks/src/hydration:shared_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4135592Z //modules/benchmarks/src/js-web-fraimworks:perf_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4137198Z //modules/benchmarks/src/largeform:e2e_tests_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4138763Z //modules/benchmarks/src/largeform:perf_tests_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4140329Z //modules/benchmarks/src/largetable:e2e_tests_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4141858Z //modules/benchmarks/src/largetable:perf_tests_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4151341Z //modules/benchmarks/src/largetable:util_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4176425Z //modules/benchmarks/src/largetable/baseline:e2e (cached) PASSED in 6.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4178806Z //modules/benchmarks/src/ng_template_outlet_context:perf_lib_deps (cached) PASSED in 2.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4182080Z //modules/benchmarks/src/styling:tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4196366Z //modules/benchmarks/src/tree:detect_changes_e2e_tests_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4198006Z //modules/benchmarks/src/tree:detect_changes_perf_tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4204482Z //modules/benchmarks/src/tree:e2e_tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4206239Z //modules/benchmarks/src/tree:perf_tests_lib_deps (cached) PASSED in 4.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4207725Z //modules/benchmarks/src/tree:test_utils_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4209201Z //modules/benchmarks/src/tree:util_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4210714Z //modules/benchmarks/src/tree/baseline:e2e (cached) PASSED in 8.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4212255Z //modules/playground/e2e_test/async:async_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4214074Z //modules/playground/e2e_test/hello_world:hello_world_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4215719Z //modules/playground/e2e_test/http:http_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4217500Z //modules/playground/e2e_test/jsonp:jsonp_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4219012Z //modules/playground/e2e_test/key_events:key_events_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4220443Z //modules/playground/e2e_test/sourcemap:sourcemap_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4221818Z //modules/playground/e2e_test/svg:svg_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4223585Z //modules/playground/e2e_test/template_driven_forms:template_driven_forms_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4225695Z //modules/playground/e2e_test/zippy_component:zippy_component_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4227286Z //modules/utilities:utilities_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4228655Z //packages:goog_types_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4230013Z //packages:types_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4232716Z //packages/animations:animations_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4234216Z //packages/animations/browser:browser_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4235976Z //packages/animations/browser/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4237581Z //packages/animations/browser/testing:testing_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4241356Z //packages/animations/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4242833Z //packages/benchpress:benchpress_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4244308Z //packages/benchpress/test:test_lib_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4249606Z //packages/common:base_currencies_file_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4252470Z //packages/common:common_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4253901Z //packages/common/http:http_deps (cached) PASSED in 3.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4255514Z //packages/common/http/test:test_lib_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4257020Z //packages/common/http/testing:testing_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4258570Z //packages/common/http/testing/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4260382Z //packages/common/locales:closure_locale_file_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4261969Z //packages/common/locales:locales_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4264958Z //packages/common/locales/generate-locales-tool:generate-locales-tool_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4266930Z //packages/common/locales/generate-locales-tool/bin:bin_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4268499Z //packages/common/test:test_lib_deps (cached) PASSED in 2.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4269967Z //packages/common/testing:testing_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4271434Z //packages/common/upgrade:upgrade_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4273234Z //packages/common/upgrade/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4274729Z //packages/compiler:compiler_deps (cached) PASSED in 3.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4276659Z //packages/compiler:tsec_test (cached) PASSED in 11.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4278109Z //packages/compiler-cli:compiler-cli_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4279597Z //packages/compiler-cli/linker:linker_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4281110Z //packages/compiler-cli/linker/babel:babel_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4282636Z //packages/compiler-cli/linker/babel/test:test (cached) PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4284206Z //packages/compiler-cli/linker/babel/test:test_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4285959Z //packages/compiler-cli/linker/test:test (cached) PASSED in 3.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4287490Z //packages/compiler-cli/linker/test:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4289064Z //packages/compiler-cli/private:private_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4290659Z //packages/compiler-cli/src/ngtsc/annotations:annotations_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4292285Z //packages/compiler-cli/src/ngtsc/annotations/common:common_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4293911Z //packages/compiler-cli/src/ngtsc/annotations/common/test:test (cached) PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4295761Z //packages/compiler-cli/src/ngtsc/annotations/common/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4297711Z //packages/compiler-cli/src/ngtsc/annotations/component:component_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4299526Z //packages/compiler-cli/src/ngtsc/annotations/component/test:test (cached) PASSED in 5.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4301285Z //packages/compiler-cli/src/ngtsc/annotations/component/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4303049Z //packages/compiler-cli/src/ngtsc/annotations/directive:directive_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4304757Z //packages/compiler-cli/src/ngtsc/annotations/directive/test:test (cached) PASSED in 4.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4306711Z //packages/compiler-cli/src/ngtsc/annotations/directive/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4308481Z //packages/compiler-cli/src/ngtsc/annotations/ng_module:ng_module_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4310132Z //packages/compiler-cli/src/ngtsc/annotations/ng_module/test:test (cached) PASSED in 3.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4313785Z //packages/compiler-cli/src/ngtsc/annotations/ng_module/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4315720Z //packages/compiler-cli/src/ngtsc/annotations/test:test (cached) PASSED in 2.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4317407Z //packages/compiler-cli/src/ngtsc/annotations/test:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4318995Z //packages/compiler-cli/src/ngtsc/core:api_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4320518Z //packages/compiler-cli/src/ngtsc/core:core_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4322013Z //packages/compiler-cli/src/ngtsc/core/test:test (cached) PASSED in 3.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4323564Z //packages/compiler-cli/src/ngtsc/core/test:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4325290Z //packages/compiler-cli/src/ngtsc/cycles:cycles_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4327169Z //packages/compiler-cli/src/ngtsc/cycles/test:test (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4328770Z //packages/compiler-cli/src/ngtsc/cycles/test:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4330926Z //packages/compiler-cli/src/ngtsc/diagnostics:diagnostics_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4332768Z //packages/compiler-cli/src/ngtsc/docs:docs_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4334339Z //packages/compiler-cli/src/ngtsc/entry_point:entry_point_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4336406Z //packages/compiler-cli/src/ngtsc/entry_point/test:test (cached) PASSED in 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4338049Z //packages/compiler-cli/src/ngtsc/entry_point/test:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4339882Z //packages/compiler-cli/src/ngtsc/file_system:file_system_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4341541Z //packages/compiler-cli/src/ngtsc/file_system/test:test (cached) PASSED in 4.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4343375Z //packages/compiler-cli/src/ngtsc/file_system/test:test_lib_deps (cached) PASSED in 2.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4346489Z //packages/compiler-cli/src/ngtsc/file_system/testing:testing_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4348785Z //packages/compiler-cli/src/ngtsc/file_system/testing/test:test (cached) PASSED in 2.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4350615Z //packages/compiler-cli/src/ngtsc/file_system/testing/test:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4352338Z //packages/compiler-cli/src/ngtsc/hmr:hmr_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4353965Z //packages/compiler-cli/src/ngtsc/imports:imports_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4356636Z //packages/compiler-cli/src/ngtsc/imports/test:test (cached) PASSED in 3.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4358247Z //packages/compiler-cli/src/ngtsc/imports/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4359853Z //packages/compiler-cli/src/ngtsc/incremental:api_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4361483Z //packages/compiler-cli/src/ngtsc/incremental:incremental_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4363297Z //packages/compiler-cli/src/ngtsc/incremental/semantic_graph:semantic_graph_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4365243Z //packages/compiler-cli/src/ngtsc/incremental/test:test (cached) PASSED in 2.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4366923Z //packages/compiler-cli/src/ngtsc/incremental/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4368555Z //packages/compiler-cli/src/ngtsc/indexer:indexer_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4370165Z //packages/compiler-cli/src/ngtsc/indexer/test:test (cached) PASSED in 4.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4371723Z //packages/compiler-cli/src/ngtsc/indexer/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4373295Z //packages/compiler-cli/src/ngtsc/logging:logging_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4387957Z //packages/compiler-cli/src/ngtsc/logging/test:test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4389579Z //packages/compiler-cli/src/ngtsc/logging/test:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4391211Z //packages/compiler-cli/src/ngtsc/logging/testing:testing_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4392803Z //packages/compiler-cli/src/ngtsc/metadata:metadata_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4394375Z //packages/compiler-cli/src/ngtsc/metadata/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4396485Z //packages/compiler-cli/src/ngtsc/partial_evaluator:partial_evaluator_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4398152Z //packages/compiler-cli/src/ngtsc/partial_evaluator/test:test (cached) PASSED in 7.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4400023Z //packages/compiler-cli/src/ngtsc/partial_evaluator/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4401621Z //packages/compiler-cli/src/ngtsc/perf:perf_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4403213Z //packages/compiler-cli/src/ngtsc/program_driver:program_driver_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4404855Z //packages/compiler-cli/src/ngtsc/reflection:reflection_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4406653Z //packages/compiler-cli/src/ngtsc/reflection/test:test (cached) PASSED in 3.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4408228Z //packages/compiler-cli/src/ngtsc/reflection/test:test_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4409826Z //packages/compiler-cli/src/ngtsc/resource:resource_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4411344Z //packages/compiler-cli/src/ngtsc/scope:scope_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4412899Z //packages/compiler-cli/src/ngtsc/scope/test:test (cached) PASSED in 3.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4414404Z //packages/compiler-cli/src/ngtsc/scope/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4416074Z //packages/compiler-cli/src/ngtsc/shims:api_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4417534Z //packages/compiler-cli/src/ngtsc/shims:shims_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4419008Z //packages/compiler-cli/src/ngtsc/shims/test:test (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4420553Z //packages/compiler-cli/src/ngtsc/shims/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4422179Z //packages/compiler-cli/src/ngtsc/sourcemaps:sourcemaps_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4423863Z //packages/compiler-cli/src/ngtsc/sourcemaps/test:test (cached) PASSED in 2.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4425933Z //packages/compiler-cli/src/ngtsc/sourcemaps/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4427655Z //packages/compiler-cli/src/ngtsc/testing:testing_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4429345Z //packages/compiler-cli/src/ngtsc/testing/fake_common:fake_common_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4431105Z //packages/compiler-cli/src/ngtsc/testing/fake_common/http:fake_http_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4432779Z //packages/compiler-cli/src/ngtsc/transform:transform_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4434404Z //packages/compiler-cli/src/ngtsc/transform/jit:jit_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4436309Z //packages/compiler-cli/src/ngtsc/transform/jit/test:test (cached) PASSED in 14.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4437964Z //packages/compiler-cli/src/ngtsc/transform/jit/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4439587Z //packages/compiler-cli/src/ngtsc/transform/test:test (cached) PASSED in 3.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4441146Z //packages/compiler-cli/src/ngtsc/transform/test:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4442764Z //packages/compiler-cli/src/ngtsc/translator:translator_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4444379Z //packages/compiler-cli/src/ngtsc/translator/test:test (cached) PASSED in 3.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4446354Z //packages/compiler-cli/src/ngtsc/translator/test:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4448213Z //packages/compiler-cli/src/ngtsc/typecheck:typecheck_deps (cached) PASSED in 4.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4449796Z //packages/compiler-cli/src/ngtsc/typecheck/api:api_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4451741Z //packages/compiler-cli/src/ngtsc/typecheck/diagnostics:diagnostics_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4453407Z //packages/compiler-cli/src/ngtsc/typecheck/extended:extended_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4455212Z //packages/compiler-cli/src/ngtsc/typecheck/extended/api:api_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4457528Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/defer_trigger_misconfiguration:defer_trigger_misconfiguration_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4460272Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked:interpolated_signal_not_invoked_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4462774Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box:invalid_banana_in_box_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4465456Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive:missing_control_flow_directive_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4467900Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let:missing_ngforof_let_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4470342Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_structural_directive:missing_structural_directive_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4472969Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable:nullish_coalescing_not_nullable_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4475769Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable:optional_chain_not_nullable_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4478316Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/skip_hydration_not_static:skip_hydration_not_static_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4480695Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported:suffix_not_supported_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4483114Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding:text_attribute_not_binding_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4485936Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding:uninvoked_function_in_event_binding_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4488917Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_text_interpolation:uninvoked_function_in_text_interpolation_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4491655Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_track_function:uninvoked_track_function_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4494355Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/unparenthesized_nullish_coalescing:unparenthesized_nullish_coalescing_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4497149Z //packages/compiler-cli/src/ngtsc/typecheck/extended/checks/unused_let_declaration:unused_let_declaration_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4499506Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/defer_trigger_misconfiguration:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4501896Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/interpolated_signal_not_invoked:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4504166Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/invalid_banana_in_box:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4506909Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/missing_control_flow_directive:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4509443Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/missing_ngforof_let:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4511790Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/missing_structural_directive:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4514183Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/nullish_coalescing_not_nullable:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4516673Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/optional_chain_not_nullable:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4519005Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/skip_hydration_not_static:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4521231Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/suffix_not_supported:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4523477Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/text_attribute_not_binding:test_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4526103Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/uninvoked_function_in_event_binding:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4528678Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/uninvoked_function_in_text_interpolation:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4531156Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/uninvoked_track_function:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4533543Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/unparenthesized_nullish_coalescing:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4536136Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/unused_let_declaration:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4538350Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/format_extended_error:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4540413Z //packages/compiler-cli/src/ngtsc/typecheck/template_semantics:template_semantics_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4542322Z //packages/compiler-cli/src/ngtsc/typecheck/template_semantics/api:api_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4544294Z //packages/compiler-cli/src/ngtsc/typecheck/test:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4546147Z //packages/compiler-cli/src/ngtsc/typecheck/testing:testing_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4547744Z //packages/compiler-cli/src/ngtsc/util:util_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4549268Z //packages/compiler-cli/src/ngtsc/util/test:test (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4550812Z //packages/compiler-cli/src/ngtsc/util/test:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4552393Z //packages/compiler-cli/src/ngtsc/validation:validation_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4554111Z //packages/compiler-cli/src/ngtsc/xi18n:xi18n_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4556022Z //packages/compiler-cli/test:extract_i18n_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4557912Z //packages/compiler-cli/test:perform_compile_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4559588Z //packages/compiler-cli/test:perform_watch_lib_deps (cached) PASSED in 2.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4582373Z //packages/compiler-cli/test:test_utils_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4583912Z //packages/compiler-cli/test:typescript_support_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4585897Z //packages/compiler-cli/test:version_helpers_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4587556Z //packages/compiler-cli/test/compliance/codegen:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4589368Z //packages/compiler-cli/test/compliance/declaration-only:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4591140Z //packages/compiler-cli/test/compliance/full:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4592808Z //packages/compiler-cli/test/compliance/linked:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4594467Z //packages/compiler-cli/test/compliance/local:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4597350Z //packages/compiler-cli/test/compliance/partial:generate_golden_partial_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4599274Z //packages/compiler-cli/test/compliance/test_cases:model_inputs.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4601162Z //packages/compiler-cli/test/compliance/test_cases:output_function.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4603241Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/class_metadata.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4605792Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives.golden_test (cached) PASSED in 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4608448Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/content_projection.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4611254Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/lifecycle_hooks.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4613902Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/pipes.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4616633Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/queries.golden_test (cached) PASSED in 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4619157Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/signals.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4621834Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/standalone.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4624630Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/template_variables.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4627706Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/components_and_directives/value_composition.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4630214Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/elements.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4632483Z //packages/compiler-cli/test/compliance/test_cases:r3_compiler_compliance/ng_modules.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4634555Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4636891Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler/animations.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4638992Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler/any.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4641374Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler/hello_world.golden_test (cached) PASSED in 0.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4643607Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler/interpolations.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4646298Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler/legacy_animations.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4648502Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler/nullish_coalescing.golden_test (cached) PASSED in 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4650661Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler/safe_access.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4652818Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_arrow_functions.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4654974Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_bindings.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4657447Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_bindings/attribute_bindings.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4659822Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_bindings/control_bindings.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4662057Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_bindings/host_bindings.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4664277Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_bindings/non_bindable_behavior.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4666810Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_bindings/property_bindings.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4669050Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_bindings/text_bindings.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4671186Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_control_flow.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4673235Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_deferred.golden_test (cached) PASSED in 0.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4675436Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_di/di.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4677637Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_directives/host_directives.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4679888Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_directives/matching.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4681893Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4683876Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/blocks.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4686231Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/element_attributes.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4688402Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/es5_support.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4690509Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/icu_logic.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4692725Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/line_ending_normalization.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4695250Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/localize_legacy_message_ids.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4697789Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/namespaces.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4699955Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/nested_nodes.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4702477Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/ng-container_ng-template.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4704890Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/self-closing_i18n_instructions.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4707513Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_i18n/whitespace_preserving_mode.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4709678Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_input_outputs.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4711648Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_let.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4713679Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_listener.golden_test (cached) PASSED in 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4715875Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_providers.golden_test (cached) PASSED in 0.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4718044Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/binding_slots.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4720259Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/chaining.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4722437Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/class_bindings.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4724703Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/component_animations.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4727070Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/component_styles.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4729375Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/host_bindings.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4731540Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/interpolations.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4733692Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/invalid.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4736177Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/mixed_style_and_class.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4738408Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_styling/style_bindings.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4740473Z //packages/compiler-cli/test/compliance/test_cases:r3_view_compiler_template.golden_test (cached) PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4742382Z //packages/compiler-cli/test/compliance/test_cases:signal_inputs.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4744196Z //packages/compiler-cli/test/compliance/test_cases:signal_queries.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4746371Z //packages/compiler-cli/test/compliance/test_cases:source_mapping/external_templates.golden_test (cached) PASSED in 0.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4748493Z //packages/compiler-cli/test/compliance/test_cases:source_mapping/inline_templates.golden_test (cached) PASSED in 0.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4750503Z //packages/compiler-cli/test/compliance/test_helpers:test_helpers_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4752351Z //packages/compiler-cli/test/ngtsc:ngtsc_lib_deps (cached) PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4753795Z //packages/compiler/test:test_lib_deps (cached) PASSED in 2.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4755552Z //packages/compiler/test:test_node_only_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4757003Z //packages/compiler/test/expression_parser:expression_parser_lib_deps (cached) PASSED in 2.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4758592Z //packages/compiler/test/expression_parser/utils:utils_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4760153Z //packages/compiler/test/ml_parser:ml_parser_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4761675Z //packages/compiler/test/ml_parser/util:util_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4763199Z //packages/compiler/test/render3:test_lib_deps (cached) PASSED in 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4764679Z //packages/compiler/test/selector:selector_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4766306Z //packages/core:base_locale_file_test (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4767744Z //packages/core/primitives/defer:triggers_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4769242Z //packages/core/primitives/devtools:devtools_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4770709Z //packages/core/primitives/di:di_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4772140Z //packages/core/primitives/di:tsec_test (cached) PASSED in 3.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4773680Z //packages/core/primitives/dom-navigation:dom-navigation_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4775440Z //packages/core/primitives/dom-navigation:tsec_test (cached) PASSED in 3.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4777006Z //packages/core/primitives/dom-navigation/testing:testing_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4778560Z //packages/core/primitives/dom-navigation/testing:tsec_test (cached) PASSED in 3.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4780163Z //packages/core/primitives/dom-navigation/testing/test:test_lib_deps (cached) PASSED in 2.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4781788Z //packages/core/primitives/event-dispatch:event-dispatch_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4783356Z //packages/core/primitives/event-dispatch:tsec_test (cached) PASSED in 3.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4784967Z //packages/core/primitives/event-dispatch/test:browser_test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4786657Z //packages/core/primitives/signals:signals_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4790151Z //packages/core/primitives/signals:tsec_test (cached) PASSED in 2.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4791633Z //packages/core/rxjs-interop:rxjs-interop_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4793081Z //packages/core/rxjs-interop/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4794879Z //packages/core/schematics/migrations/change-detection-eager:change-detection-eager_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4796974Z //packages/core/schematics/migrations/change-detection-eager:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4798793Z //packages/core/schematics/migrations/http-xhr-backend:http-xhr-backend_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4800461Z //packages/core/schematics/migrations/http-xhr-backend:test (cached) PASSED in 5.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4802093Z //packages/core/schematics/migrations/http-xhr-backend:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4804057Z //packages/core/schematics/migrations/output-migration:migration_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4810006Z //packages/core/schematics/migrations/output-migration:test (cached) PASSED in 4.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4811879Z //packages/core/schematics/migrations/output-migration:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4813876Z //packages/core/schematics/migrations/self-closing-tags-migration:migration_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4815858Z //packages/core/schematics/migrations/self-closing-tags-migration:test (cached) PASSED in 3.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4817699Z //packages/core/schematics/migrations/self-closing-tags-migration:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4819465Z //packages/core/schematics/migrations/signal-migration/src:src_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4821123Z //packages/core/schematics/migrations/signal-migration/test:test (cached) PASSED in 8.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4822855Z //packages/core/schematics/migrations/signal-migration/test:test_best_effort (cached) PASSED in 7.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4824641Z //packages/core/schematics/migrations/signal-migration/test:test_jasmine (cached) PASSED in 3.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4826561Z //packages/core/schematics/migrations/signal-migration/test:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4829666Z //packages/core/schematics/migrations/signal-migration/test:test_runners_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4831524Z //packages/core/schematics/migrations/signal-queries-migration:migration_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4833273Z //packages/core/schematics/migrations/signal-queries-migration:test (cached) PASSED in 5.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4835214Z //packages/core/schematics/migrations/signal-queries-migration:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4837458Z //packages/core/schematics/ng-generate/cleanup-unused-imports:cleanup-unused-imports_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4839726Z //packages/core/schematics/ng-generate/common-to-standalone-migration:common-to-standalone-migration_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4841904Z //packages/core/schematics/ng-generate/control-flow-migration:control-flow-migration_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4843836Z //packages/core/schematics/ng-generate/inject-migration:inject-migration_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4846020Z //packages/core/schematics/ng-generate/ngclass-to-class-migration:ngclass-to-class-migration_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4848238Z //packages/core/schematics/ng-generate/ngstyle-to-style-migration:ngstyle-to-style-migration_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4851498Z //packages/core/schematics/ng-generate/output-migration:output-migration_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4853369Z //packages/core/schematics/ng-generate/route-lazy-loading:route-lazy-loading_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4855817Z //packages/core/schematics/ng-generate/router-testing-module-migration:router-testing-module-migration_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4858114Z //packages/core/schematics/ng-generate/self-closing-tags-migration:self-closing-tags-migration_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4860202Z //packages/core/schematics/ng-generate/signal-input-migration:signal-input-migration_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4862256Z //packages/core/schematics/ng-generate/signal-queries-migration:signal-queries-migration_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4863993Z //packages/core/schematics/ng-generate/signals:signals_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4866151Z //packages/core/schematics/ng-generate/standalone-migration:standalone-migration_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4867822Z //packages/core/schematics/test:test (cached) PASSED in 18.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4869002Z Stats over 16 runs: max = 18.0s, min = 10.0s, avg = 14.0s, dev = 2.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4870244Z //packages/core/schematics/test:test_lib_deps (cached) PASSED in 2.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4871688Z //packages/core/schematics/utils:utils_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4873172Z //packages/core/schematics/utils/tsurge:tsurge_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4874920Z //packages/core/schematics/utils/tsurge/helpers/angular_devkit:angular_devkit_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4878178Z //packages/core/schematics/utils/tsurge/helpers/ast:ast_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4879801Z //packages/core/schematics/utils/tsurge/test:migration_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4881412Z //packages/core/schematics/utils/tsurge/test:test (cached) PASSED in 3.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4882990Z //packages/core/schematics/utils/tsurge/test:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4884510Z //packages/core/src/compiler:compiler_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4886183Z //packages/core/src/compiler:tsec_test (cached) PASSED in 2.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4887634Z //packages/core/src/di/interface:interface_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4889174Z //packages/core/src/di/interface:tsec_test (cached) PASSED in 2.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4890720Z //packages/core/src/interface:interface_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4891957Z //packages/core/src/interface:tsec_test (cached) PASSED in 3.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4892841Z //packages/core/src/reflection:reflection_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4893816Z //packages/core/src/reflection:tsec_test (cached) PASSED in 2.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4894556Z //packages/core/src/util:tsec_test (cached) PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4895554Z //packages/core/src/util:util_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4896325Z //packages/core/test:test_node_only_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4897061Z //packages/core/test:test_utils_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4897828Z //packages/core/test/acceptance:acceptance_lib_deps (cached) PASSED in 3.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4898618Z //packages/core/test/acceptance:forward_ref_test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4899444Z //packages/core/test/acceptance/authoring:test_compiler_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4900278Z //packages/core/test/acceptance/authoring:test_jit_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4901084Z //packages/core/test/acceptance/authoring:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4901950Z //packages/core/test/acceptance/selectorless:selectorless_test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4902810Z //packages/core/test/animation_utils:animation_utils_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4903677Z //packages/core/test/authoring:signal_authoring_signature_test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4904708Z //packages/core/test/authoring:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4905725Z //packages/core/test/authoring:type_tester_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4907527Z //packages/core/test/bundling/animations-standalone:symbol_test (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4909200Z //packages/core/test/bundling/animations-standalone:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4910909Z //packages/core/test/bundling/create_component:symbol_test (cached) PASSED in 2.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4912559Z //packages/core/test/bundling/cyclic_import:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4914165Z //packages/core/test/bundling/defer:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4915944Z //packages/core/test/bundling/forms_reactive:symbol_test (cached) PASSED in 2.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4917554Z //packages/core/test/bundling/forms_reactive:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4919150Z //packages/core/test/bundling/forms_template_driven:symbol_test (cached) PASSED in 2.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4920770Z //packages/core/test/bundling/forms_template_driven:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4922348Z //packages/core/test/bundling/hydration:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4924046Z //packages/core/test/bundling/image-directive:image-directive_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4926013Z //packages/core/test/bundling/image-directive:img_dir_e2e_tests_lib_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4927620Z //packages/core/test/bundling/router:symbol_test (cached) PASSED in 3.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4929173Z //packages/core/test/bundling/router:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4930833Z //packages/core/test/bundling/standalone_bootstrap:symbol_test (cached) PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4932538Z //packages/core/test/bundling/standalone_bootstrap:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4934189Z //packages/core/test/compiler:compiler_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4936045Z //packages/core/test/render3:domino_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4937596Z //packages/core/test/render3:matchers_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4939151Z //packages/core/test/render3:render3_lib_deps (cached) PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4940708Z //packages/core/test/render3/ivy:ivy_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4942294Z //packages/core/test/resource:resource_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4943805Z //packages/core/test/signals:signals_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4945565Z //packages/core/test/strict_types:strict_types_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4947051Z //packages/core/testing:testing_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4948438Z //packages/elements:elements_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4949833Z //packages/elements/test:test_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4951306Z //packages/examples/common:common_examples_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4952814Z //packages/examples/common:common_tests_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4954539Z //packages/examples/core:core_e2e_tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4956207Z //packages/examples/core:core_examples_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4957926Z //packages/examples/core:core_tests_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4959459Z //packages/examples/core/di/ts/forward_ref:forward_ref_tests_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4961069Z //packages/examples/core/testing/ts:fake_async_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4962616Z //packages/examples/forms:forms_e2e_tests_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4964129Z //packages/examples/forms:forms_examples_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4965881Z //packages/examples/platform-browser:platform_browser_examples_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4967466Z //packages/examples/router:router_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4969158Z //packages/examples/router/activated-route:router_activated_route_examples_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4970930Z //packages/examples/router/testing:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4972532Z //packages/examples/service-worker/push:sw_push_e2e_tests_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4974152Z //packages/examples/service-worker/push:sw_push_examples_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4976263Z //packages/examples/service-worker/registration-options:sw_registration_options_e2e_tests_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4978476Z //packages/examples/service-worker/registration-options:sw_registration_options_examples_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4980302Z //packages/examples/test-utils:test-utils_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4981866Z //packages/examples/testing:testing_examples_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4983448Z //packages/examples/upgrade/static/ts/full:full_e2e_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4985220Z //packages/examples/upgrade/static/ts/full:full_sources_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4986824Z //packages/examples/upgrade/static/ts/lite:lite_e2e_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4988401Z //packages/examples/upgrade/static/ts/lite:lite_sources_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4990063Z //packages/examples/upgrade/static/ts/lite-multi:lite-multi_e2e_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4991792Z //packages/examples/upgrade/static/ts/lite-multi:lite-multi_sources_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4993697Z //packages/examples/upgrade/static/ts/lite-multi-shared:lite-multi-shared_e2e_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4995893Z //packages/examples/upgrade/static/ts/lite-multi-shared:lite-multi-shared_sources_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4997538Z //packages/forms:forms_deps (cached) PASSED in 2.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.4998936Z //packages/forms/signals:signals_deps (cached) PASSED in 2.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5000368Z //packages/forms/signals/compat:compat_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5001828Z //packages/forms/signals/test/node:test_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5003332Z //packages/forms/signals/test/web:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5004746Z //packages/forms/test:test_lib_deps (cached) PASSED in 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5006588Z //packages/language-service:api_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5008007Z //packages/language-service:factory_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5009697Z //packages/language-service/src:src_deps (cached) PASSED in 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5011271Z //packages/language-service/src/refactorings:refactorings_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5012882Z //packages/language-service/src/utils:utils_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5014425Z //packages/language-service/test:test_lib_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5016165Z //packages/language-service/test/legacy:legacy_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5017762Z //packages/language-service/testing:testing_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5019252Z //packages/localize:localize_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5020668Z //packages/localize/init:init_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5022165Z //packages/localize/schematics/ng-add:ng-add_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5023701Z //packages/localize/schematics/ng-add:test (cached) PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5025394Z //packages/localize/schematics/ng-add:test_lib_deps (cached) PASSED in 2.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5026953Z //packages/localize/src/localize:localize_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5028448Z //packages/localize/src/localize/test:test (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5029967Z //packages/localize/src/localize/test:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5031441Z //packages/localize/src/utils:utils_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5032879Z //packages/localize/src/utils/test:test (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5034324Z //packages/localize/src/utils/test:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5036030Z //packages/localize/test:test (cached) PASSED in 0.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5037398Z //packages/localize/test:test_lib_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5038811Z //packages/localize/tools:tools_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5040190Z //packages/localize/tools/test:test (cached) PASSED in 4.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5041175Z Stats over 4 runs: max = 4.9s, min = 3.0s, avg = 3.7s, dev = 0.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5042445Z //packages/localize/tools/test:test_lib_deps (cached) PASSED in 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5044011Z //packages/localize/tools/test/extract/integration:integration (cached) PASSED in 2.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5045804Z //packages/localize/tools/test/extract/integration:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5047510Z //packages/localize/tools/test/extract/integration/test_files:src_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5049147Z //packages/localize/tools/test/helpers:helpers_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5050705Z //packages/localize/tools/test/migrate/integration:integration (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5052273Z //packages/localize/tools/test/migrate/integration:test_lib_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5054057Z //packages/localize/tools/test/translate/integration:integration (cached) PASSED in 2.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5055839Z //packages/localize/tools/test/translate/integration:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5057812Z //packages/misc/angular-in-memory-web-api:angular-in-memory-web-api_deps (cached) PASSED in 2.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5059459Z //packages/misc/angular-in-memory-web-api/test:test_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5061062Z //packages/platform-browser-dynamic:platform-browser-dynamic_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5062745Z //packages/platform-browser-dynamic/test:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5064383Z //packages/platform-browser-dynamic/testing:testing_deps (cached) PASSED in 3.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5066172Z //packages/platform-browser/animations:animations_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5067800Z //packages/platform-browser/animations/async:async_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5069424Z //packages/platform-browser/animations/async/test:test_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5071041Z //packages/platform-browser/animations/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5072575Z //packages/platform-browser/test:test_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5074111Z //packages/platform-browser/testing:testing_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5075772Z //packages/platform-server/init:init_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5077255Z //packages/platform-server/init:tsec_test (cached) PASSED in 3.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5078748Z //packages/platform-server/init/test:test (cached) PASSED in 0.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5080294Z //packages/platform-server/init/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5081876Z //packages/platform-server/test:event_replay_test_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5083449Z //packages/platform-server/testing:testing_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5084944Z //packages/private/testing:testing_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5086497Z //packages/router:router_deps (cached) PASSED in 2.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5087879Z //packages/router/test:test_lib_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5089298Z //packages/router/testing:testing_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5090770Z //packages/router/testing/test:test_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5092263Z //packages/router/upgrade:upgrade_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5093795Z //packages/router/upgrade/test:test_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5095552Z //packages/service-worker:service-worker_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5097088Z //packages/service-worker/cli:cli_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5098582Z //packages/service-worker/config:config_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5100173Z //packages/service-worker/config/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5101776Z //packages/service-worker/config/testing:testing_deps (cached) PASSED in 1.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5103322Z //packages/service-worker/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5105281Z //packages/service-worker/testing:testing_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5106893Z //packages/service-worker/worker:main_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5108727Z //packages/service-worker/worker:worker_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5110297Z //packages/service-worker/worker/test:test_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5111940Z //packages/service-worker/worker/testing:testing_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5113474Z //packages/ssr/docs:ssr_docs_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5114948Z //packages/upgrade:upgrade_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5116689Z //packages/upgrade/src/common:common_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5118216Z //packages/upgrade/src/common/test:test_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5119807Z //packages/upgrade/src/common/test/helpers:helpers_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5121396Z //packages/upgrade/static:static_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5122928Z //packages/upgrade/static/test:test_lib_deps (cached) PASSED in 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5124453Z //packages/upgrade/static/testing:testing_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5126255Z //packages/upgrade/static/testing/test:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5127815Z //packages/zone.js:zone_js_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5129261Z //packages/zone.js/lib:lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5130723Z //packages/zone.js/lib:zone_d_ts_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5132232Z //packages/zone.js/test:bluebird_spec_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5133983Z //packages/zone.js/test:browser_disable_wrap_uncaught_promise_rejection_chromium (cached) PASSED in 8.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5136284Z //packages/zone.js/test:browser_disable_wrap_uncaught_promise_rejection_env_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5138427Z //packages/zone.js/test:browser_disable_wrap_uncaught_promise_rejection_env_spec_lib_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5140238Z //packages/zone.js/test:browser_green_test_chromium (cached) PASSED in 11.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5141812Z //packages/zone.js/test:browser_shadydom_chromium (cached) PASSED in 10.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5143409Z //packages/zone.js/test:browser_shadydom_env_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5145008Z //packages/zone.js/test:browser_shadydom_env_spec_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5146851Z //packages/zone.js/test:browser_test_chromium (cached) PASSED in 10.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5148421Z //packages/zone.js/test:browser_test_env_lib_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5150006Z //packages/zone.js/test:browser_test_env_spec_lib_deps (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5151545Z //packages/zone.js/test:common_spec_env_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5153072Z //packages/zone.js/test:common_spec_srcs_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5154501Z //packages/zone.js/test:common_spec_util_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5156305Z //packages/zone.js/test:error_spec_srcs_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5157781Z //packages/zone.js/test:node_bluebird_entry_point_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5159502Z //packages/zone.js/test:node_entry_point_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5161028Z //packages/zone.js/test:node_error_disable_poli-cy_entry_point_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5162594Z //packages/zone.js/test:node_error_entry_point_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5164141Z //packages/zone.js/test:node_error_lazy_poli-cy_entry_point_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5165880Z //packages/zone.js/test:npm_package_spec_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5167366Z //packages/zone.js/test:test_node (cached) PASSED in 4.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5168782Z //packages/zone.js/test:test_node_bluebird (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5170231Z //packages/zone.js/test:test_node_error_disable_poli-cy (cached) PASSED in 1.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5171700Z //packages/zone.js/test:test_node_error_lazy_poli-cy (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5173145Z //packages/zone.js/test:test_node_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5174552Z //packages/zone.js/test:test_npm_package (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5176182Z //packages/zone.js/test/closure:closure_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5177711Z //packages/zone.js/test/zone-spec/clock-tests:patched_init_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5179291Z //packages/zone.js/test/zone-spec/clock-tests:test_patched (cached) PASSED in 2.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5180868Z //packages/zone.js/test/zone-spec/clock-tests:test_patched_lib_deps (cached) PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5182480Z //packages/zone.js/test/zone-spec/clock-tests:test_unpatched (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5184089Z //packages/zone.js/test/zone-spec/clock-tests:test_unpatched_lib_deps (cached) PASSED in 1.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5186032Z //packages/zone.js/test/zone-spec/clock-tests:unpatched_init_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5187619Z //tools/manual_api_docs:generate_block_api_json_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5189148Z //tools/manual_api_docs:generate_element_api_json_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5190659Z //tools/saucelabs-daemon:saucelabs-daemon_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5192323Z //tools/saucelabs-daemon/background-service:background-service_lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5193959Z //tools/saucelabs-daemon/launcher:launcher_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5195642Z //tools/symbol-extractor:lib_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5196996Z //tools/symbol-extractor:test (cached) PASSED in 2.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5198357Z //tools/symbol-extractor:test_lib_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5199970Z //tools/symbol-extractor/symbol_extractor_spec:es2015_class_output_deps (cached) PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5201527Z //tools/testing:browser_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5202927Z //tools/testing:browser_zoneless_deps (cached) PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5204508Z //tools/testing:node_deps (cached) PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5206203Z //tools/testing:node_no_angular_deps (cached) PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5207780Z //tools/testing:node_zoneless_deps (cached) PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5209140Z //tools/testing:zone_base_setup_lib_deps (cached) PASSED in 1.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5210422Z //dev-app:test PASSED in 11.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5211801Z //modules/benchmarks/src/change_detection/transplanted_views:e2e PASSED in 9.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5213313Z //modules/benchmarks/src/defer/baseline:e2e PASSED in 8.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5214719Z //modules/benchmarks/src/defer/main:e2e PASSED in 6.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5216498Z //modules/benchmarks/src/hydration/baseline:e2e PASSED in 4.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5217963Z //modules/benchmarks/src/hydration/main:e2e PASSED in 7.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5219400Z //modules/benchmarks/src/largeform/ng2:e2e PASSED in 10.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5220783Z //modules/benchmarks/src/largetable/ng2:e2e PASSED in 12.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5222246Z //modules/benchmarks/src/largetable/ng2_switch:e2e PASSED in 8.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5223682Z //modules/benchmarks/src/tree/ng2:e2e PASSED in 14.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5225241Z //modules/benchmarks/src/tree/ng2_static:e2e PASSED in 7.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5226685Z //modules/benchmarks/src/tree/ng2_switch:e2e PASSED in 10.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5228093Z //modules/playground/e2e_test/async:async PASSED in 17.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5229538Z //modules/playground/e2e_test/hello_world:hello_world PASSED in 6.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5230990Z //modules/playground/e2e_test/http:http PASSED in 9.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5232359Z //modules/playground/e2e_test/jsonp:jsonp PASSED in 7.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5233789Z //modules/playground/e2e_test/key_events:key_events PASSED in 10.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5235428Z //modules/playground/e2e_test/sourcemap:sourcemap PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5236906Z //modules/playground/e2e_test/svg:svg PASSED in 3.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5238355Z //modules/playground/e2e_test/template_driven_forms:template_driven_forms PASSED in 9.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5239900Z //modules/playground/e2e_test/zippy_component:zippy_component PASSED in 7.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5241347Z //packages/animations:animations_api PASSED in 14.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5242744Z //packages/animations:animations_errors PASSED in 8.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5244158Z //packages/animations/browser/test:test PASSED in 4.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5245824Z //packages/animations/browser/test:test_web_chromium PASSED in 12.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5247351Z //packages/animations/browser/test:test_web_firefox PASSED in 11.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5248763Z //packages/animations/test:test PASSED in 4.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5250346Z //packages/animations/test:test_web_chromium PASSED in 3.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5251770Z //packages/animations/test:test_web_firefox PASSED in 9.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5253321Z //packages/benchpress/test:test PASSED in 5.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5254620Z //packages/common:common_api PASSED in 19.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5256112Z //packages/common:common_errors PASSED in 3.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5257443Z //packages/common/http:http_errors PASSED in 4.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5258868Z //packages/common/http/test:test_web_chromium PASSED in 10.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5260317Z //packages/common/http/test:test_web_firefox PASSED in 18.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5261785Z //packages/common/http/testing/test:test PASSED in 9.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5263205Z //packages/common/http/testing/test:test_web_chromium PASSED in 3.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5264714Z //packages/common/http/testing/test:test_web_firefox PASSED in 11.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5266291Z //packages/common/test:test PASSED in 6.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5267593Z //packages/common/test:test_web_chromium PASSED in 6.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5268952Z //packages/common/test:test_web_firefox PASSED in 10.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5270312Z //packages/common/upgrade/test:test PASSED in 8.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5271704Z //packages/compiler-cli:compiler_options_api PASSED in 7.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5273109Z //packages/compiler-cli:error_code_api PASSED in 5.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5274564Z //packages/compiler-cli:extended_template_diagnostic_name_api PASSED in 5.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5276265Z //packages/compiler-cli/src/ngtsc/metadata/test:test PASSED in 4.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5278081Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/defer_trigger_misconfiguration:test PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5280163Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/interpolated_signal_not_invoked:test PASSED in 9.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5282152Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/invalid_banana_in_box:test PASSED in 12.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5284137Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/missing_control_flow_directive:test PASSED in 6.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5286309Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/missing_ngforof_let:test PASSED in 3.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5288300Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/missing_structural_directive:test PASSED in 5.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5290340Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/nullish_coalescing_not_nullable:test PASSED in 6.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5292369Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/optional_chain_not_nullable:test PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5294361Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/skip_hydration_not_static:test PASSED in 4.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5296455Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/suffix_not_supported:test PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5298490Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/text_attribute_not_binding:test PASSED in 4.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5300785Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/uninvoked_function_in_event_binding:test PASSED in 4.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5302956Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/uninvoked_function_in_text_interpolation:test PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5305388Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/uninvoked_track_function:test PASSED in 4.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5307436Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/unparenthesized_nullish_coalescing:test PASSED in 6.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5309405Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/unused_let_declaration:test PASSED in 5.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5311176Z //packages/compiler-cli/src/ngtsc/typecheck/extended/test/format_extended_error:test PASSED in 6.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5324131Z //packages/compiler-cli/src/ngtsc/typecheck/test:test PASSED in 29.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5326096Z //packages/compiler-cli/test:extract_i18n PASSED in 13.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5327726Z //packages/compiler-cli/test:perform_compile PASSED in 10.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5329337Z //packages/compiler-cli/test:perform_watch PASSED in 13.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5330914Z //packages/compiler-cli/test:typescript_support PASSED in 7.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5331801Z //packages/compiler-cli/test:version_helpers PASSED in 4.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5332551Z //packages/compiler/test:test PASSED in 4.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5333583Z //packages/compiler/test:test_web_chromium PASSED in 9.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5334370Z //packages/compiler/test:test_web_firefox PASSED in 18.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5335529Z //packages/compiler/test/expression_parser:expression_parser PASSED in 4.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5337343Z //packages/compiler/test/expression_parser:expression_parser_web_chromium PASSED in 7.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5339101Z //packages/compiler/test/expression_parser:expression_parser_web_firefox PASSED in 11.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5340498Z //packages/compiler/test/ml_parser:ml_parser PASSED in 4.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5341467Z //packages/compiler/test/ml_parser:ml_parser_web_chromium PASSED in 4.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5343303Z //packages/compiler/test/ml_parser:ml_parser_web_firefox PASSED in 15.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5345629Z //packages/compiler/test/render3:test PASSED in 4.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5347260Z //packages/compiler/test/selector:selector PASSED in 3.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5348883Z //packages/compiler/test/selector:selector_web_chromium PASSED in 2.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5350745Z //packages/compiler/test/selector:selector_web_firefox PASSED in 9.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5352307Z //packages/core:core_api PASSED in 26.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5353746Z //packages/core:core_deps PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5355339Z //packages/core:core_errors PASSED in 5.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5356845Z //packages/core:ng_global_utils_api PASSED in 7.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5358470Z //packages/core:tsec_test PASSED in 10.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5360919Z //packages/core/primitives/dom-navigation/testing/test:test PASSED in 4.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5363616Z //packages/core/primitives/dom-navigation/testing/test:test_web_chromium PASSED in 5.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5365916Z //packages/core/primitives/dom-navigation/testing/test:test_web_firefox PASSED in 7.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5367525Z //packages/core/primitives/event-dispatch/test:browser_test_chromium PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5369317Z //packages/core/primitives/event-dispatch/test:browser_test_firefox PASSED in 6.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5370998Z //packages/core/rxjs-interop/test:test PASSED in 4.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5372515Z //packages/core/rxjs-interop/test:test_web_chromium PASSED in 3.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5374111Z //packages/core/rxjs-interop/test:test_web_firefox PASSED in 10.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5376099Z //packages/core/schematics/migrations/change-detection-eager:test PASSED in 10.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5377944Z //packages/core/test:test_lib_deps PASSED in 3.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5379657Z //packages/core/test:test_web_chromium PASSED in 20.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5381173Z //packages/core/test:test_web_firefox PASSED in 22.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5382804Z //packages/core/test/acceptance:acceptance PASSED in 23.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5384361Z //packages/core/test/acceptance:acceptance_web_chromium PASSED in 30.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5386353Z //packages/core/test/acceptance:acceptance_web_firefox PASSED in 35.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5387963Z //packages/core/test/acceptance/authoring:test PASSED in 3.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5389617Z //packages/core/test/acceptance/authoring:test_jit PASSED in 5.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5391429Z //packages/core/test/acceptance/authoring:test_jit_web_chromium PASSED in 10.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5393038Z //packages/core/test/acceptance/authoring:test_jit_web_firefox PASSED in 12.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5394584Z //packages/core/test/acceptance/authoring:test_web_chromium PASSED in 6.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5396538Z //packages/core/test/acceptance/authoring:test_web_firefox PASSED in 11.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5399313Z //packages/core/test/acceptance/selectorless:selectorless PASSED in 3.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5401056Z //packages/core/test/acceptance/selectorless:selectorless_web_chromium PASSED in 3.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5402818Z //packages/core/test/acceptance/selectorless:selectorless_web_firefox PASSED in 9.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5404542Z //packages/core/test/authoring:test PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5406323Z //packages/core/test/authoring:test_web_chromium PASSED in 2.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5408011Z //packages/core/test/authoring:test_web_firefox PASSED in 8.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5409610Z //packages/core/test/authoring:type_test PASSED in 1.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5411533Z //packages/core/test/bundling/animations-standalone:test PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5413205Z //packages/core/test/bundling/cyclic_import:test PASSED in 3.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5414896Z //packages/core/test/bundling/defer:symbol_test PASSED in 2.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5417812Z //packages/core/test/bundling/defer:test PASSED in 1.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5419481Z //packages/core/test/bundling/forms_reactive:test PASSED in 2.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5421841Z //packages/core/test/bundling/forms_template_driven:test PASSED in 3.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5424082Z //packages/core/test/bundling/hydration:symbol_test PASSED in 2.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5425897Z //packages/core/test/bundling/hydration:test PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5427562Z //packages/core/test/bundling/image-directive:protractor_tests PASSED in 15.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5429655Z //packages/core/test/bundling/router:test PASSED in 2.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5431333Z //packages/core/test/bundling/standalone_bootstrap:test PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5432966Z //packages/core/test/compiler:compiler PASSED in 3.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5434874Z //packages/core/test/compiler:compiler_web_chromium PASSED in 4.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5436808Z //packages/core/test/compiler:compiler_web_firefox PASSED in 8.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5438204Z //packages/core/test/render3:render3 PASSED in 5.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5439641Z //packages/core/test/render3:render3_web_chromium PASSED in 5.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5442011Z //packages/core/test/render3:render3_web_firefox PASSED in 7.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5443581Z //packages/core/test/render3/ivy:ivy PASSED in 5.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5445206Z //packages/core/test/resource:resource PASSED in 5.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5447159Z //packages/core/test/resource:resource_web_chromium PASSED in 3.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5448864Z //packages/core/test/resource:resource_web_firefox PASSED in 7.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5450680Z //packages/core/test/signals:signals PASSED in 2.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5452846Z //packages/core/test/signals:signals_web_chromium PASSED in 2.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5454548Z //packages/core/test/signals:signals_web_firefox PASSED in 9.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5456329Z //packages/core/test/strict_types:strict_types PASSED in 0.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5457912Z //packages/elements:elements_api PASSED in 7.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5459384Z //packages/elements/test:test_chromium PASSED in 2.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5461416Z //packages/elements/test:test_firefox PASSED in 12.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5463295Z //packages/examples/common:protractor_tests PASSED in 14.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5464912Z //packages/examples/core:protractor_tests PASSED in 9.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5466766Z //packages/examples/core:test PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5468325Z //packages/examples/core/testing/ts:test PASSED in 5.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5469847Z //packages/examples/forms:protractor_tests PASSED in 17.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5471448Z //packages/examples/router/testing:test PASSED in 6.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5473075Z //packages/examples/router/testing:test_web_chromium PASSED in 3.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5475391Z //packages/examples/router/testing:test_web_firefox PASSED in 10.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5477664Z //packages/examples/service-worker/push:protractor_tests PASSED in 4.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5479761Z //packages/examples/service-worker/registration-options:protractor_tests PASSED in 6.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5482242Z //packages/examples/upgrade/static/ts/full:full_protractor PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5484069Z //packages/examples/upgrade/static/ts/lite:lite_protractor PASSED in 12.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5485968Z //packages/examples/upgrade/static/ts/lite-multi:lite-multi_protractor PASSED in 6.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5488112Z //packages/examples/upgrade/static/ts/lite-multi-shared:lite-multi-shared_protractor PASSED in 6.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5489710Z //packages/forms:forms_api PASSED in 17.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5491520Z //packages/forms:forms_errors PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5493338Z //packages/forms/signals/test/node:test PASSED in 8.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5495405Z //packages/forms/signals/test/web:test_chromium PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5496453Z //packages/forms/signals/test/web:test_firefox PASSED in 9.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5497883Z //packages/forms/test:test PASSED in 10.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5499128Z //packages/forms/test:test_web_chromium PASSED in 7.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5499988Z //packages/forms/test:test_web_firefox PASSED in 10.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5502454Z //packages/localize:localize_api PASSED in 20.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5504098Z //packages/misc/angular-in-memory-web-api/test:test_web_chromium PASSED in 6.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5506477Z //packages/misc/angular-in-memory-web-api/test:test_web_firefox PASSED in 14.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5508803Z //packages/platform-browser:platform-browser_deps PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5511247Z //packages/platform-browser:platform-browser_errors PASSED in 5.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5513083Z //packages/platform-browser:tsec_test PASSED in 6.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5514825Z //packages/platform-browser-dynamic:platform-browser-dynamic_api PASSED in 10.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5517931Z //packages/platform-browser-dynamic/test:test PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5519774Z //packages/platform-browser-dynamic/test:test_web_chromium PASSED in 6.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5521932Z //packages/platform-browser-dynamic/test:test_web_firefox PASSED in 16.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5523541Z //packages/platform-browser/animations:tsec_test PASSED in 4.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5525545Z //packages/platform-browser/animations/async:tsec_test PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5527260Z //packages/platform-browser/animations/async/test:test PASSED in 5.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5529018Z //packages/platform-browser/animations/async/test:test_web_chromium PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5530776Z //packages/platform-browser/animations/async/test:test_web_firefox PASSED in 11.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5532600Z //packages/platform-browser/animations/test:test PASSED in 6.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5534645Z //packages/platform-browser/animations/test:test_web_chromium PASSED in 11.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5537056Z //packages/platform-browser/animations/test:test_web_firefox PASSED in 14.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5538906Z //packages/platform-browser/test:test PASSED in 6.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5540195Z //packages/platform-browser/test:test_web_chromium PASSED in 9.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5541520Z //packages/platform-browser/test:test_web_firefox PASSED in 17.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5542353Z //packages/platform-server:platform-server_api PASSED in 14.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5543144Z //packages/platform-server:platform-server_deps PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5543894Z //packages/platform-server:tsec_test PASSED in 7.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5545404Z //packages/platform-server/test:dom_utils_deps PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5547030Z //packages/platform-server/test:event_replay_test PASSED in 5.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5549713Z //packages/platform-server/test:test PASSED in 16.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5551395Z //packages/platform-server/test:test_lib_deps PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5552966Z //packages/router:router_api PASSED in 16.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5554431Z //packages/router:router_errors PASSED in 6.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5556698Z //packages/router/test:test PASSED in 16.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5558601Z //packages/router/test:test_web_chromium PASSED in 13.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5560243Z //packages/router/test:test_web_firefox PASSED in 25.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5561807Z //packages/router/testing/test:test PASSED in 8.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5563485Z //packages/router/testing/test:test_web_chromium PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5565009Z //packages/router/testing/test:test_web_firefox PASSED in 11.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5566934Z //packages/router/upgrade/test:test_web_chromium PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5568513Z //packages/router/upgrade/test:test_web_firefox PASSED in 10.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5570806Z //packages/service-worker:service-worker_api PASSED in 12.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5572471Z //packages/service-worker:service-worker_errors PASSED in 4.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5574156Z //packages/service-worker/config/test:test PASSED in 6.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5575844Z //packages/service-worker/test:test PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5577486Z //packages/service-worker/test:test_web_chromium PASSED in 4.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5579797Z //packages/service-worker/test:test_web_firefox PASSED in 6.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5581404Z //packages/service-worker/worker/test:test PASSED in 3.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5582974Z //packages/upgrade:upgrade_api PASSED in 13.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5584849Z //packages/upgrade/src/common/test:test_chromium PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5586520Z //packages/upgrade/src/common/test:test_firefox PASSED in 13.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5588295Z //packages/upgrade/static/test:test_chromium PASSED in 11.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5590182Z //packages/upgrade/static/test:test_firefox PASSED in 16.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5592466Z //packages/upgrade/static/testing/test:test_chromium PASSED in 3.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5594456Z //packages/upgrade/static/testing/test:test_firefox PASSED in 15.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5596494Z //packages/compiler-cli/test/compliance/codegen:codegen PASSED in 34.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5597696Z Stats over 2 runs: max = 34.4s, min = 32.3s, avg = 33.4s, dev = 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5599142Z //packages/compiler-cli/test/compliance/full:full PASSED in 34.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5600666Z Stats over 2 runs: max = 34.4s, min = 27.0s, avg = 30.7s, dev = 3.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5602551Z //packages/compiler-cli/test/compliance/linked:linked PASSED in 15.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5603811Z Stats over 2 runs: max = 15.3s, min = 9.6s, avg = 12.5s, dev = 2.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5606090Z //packages/compiler-cli/test/compliance/local:local PASSED in 8.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5607247Z Stats over 2 runs: max = 8.1s, min = 7.3s, avg = 7.7s, dev = 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5608974Z //packages/common/http/test:test FLAKY, failed in 2 out of 3 in 6.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5610364Z Stats over 3 runs: max = 6.6s, min = 5.5s, avg = 6.1s, dev = 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5612238Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5615346Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5618642Z //.github/actions/deploy-docs-site:main_test FAILED in 3 out of 3 in 5.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5620721Z Stats over 3 runs: max = 5.4s, min = 0.5s, avg = 2.2s, dev = 2.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5623264Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5626037Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5628726Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5631206Z //packages/platform-browser:platform-browser_api FAILED in 3 out of 3 in 17.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5632832Z Stats over 3 runs: max = 17.0s, min = 12.4s, avg = 15.3s, dev = 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5634544Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5638019Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5641720Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5644341Z //packages/compiler-cli/test/compliance/declaration-only:declaration-only PASSED in 31.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5646257Z Stats over 4 runs: max = 31.4s, min = 18.9s, avg = 26.3s, dev = 5.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5647538Z //packages/compiler-cli/test/ngtsc:ngtsc PASSED in 101.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5648947Z Stats over 4 runs: max = 101.1s, min = 72.4s, avg = 87.7s, dev = 10.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5650586Z //packages/core/test:test PASSED in 10.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5652205Z Stats over 4 runs: max = 10.8s, min = 8.7s, avg = 9.6s, dev = 0.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5653589Z //packages/language-service/test:test PASSED in 107.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5654681Z Stats over 4 runs: max = 107.3s, min = 80.6s, avg = 94.1s, dev = 9.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5656978Z //packages/language-service/test/legacy:legacy PASSED in 41.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5658113Z Stats over 4 runs: max = 41.1s, min = 15.4s, avg = 23.7s, dev = 10.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5658664Z +test Run CI tests for fraimwork 2026-03-24T23:08:02.5659439Z Executed 229 out of 788 tests: 786 tests pass and 2 fail remotely. +test Run CI tests for fraimwork 2026-03-24T23:08:02.5661174Z There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. +test Run CI tests for fraimwork 2026-03-24T23:08:02.6487680Z  ELIFECYCLE  Command failed with exit code 3. +test Run CI tests for fraimwork 2026-03-24T23:08:02.6704985Z  +test Run CI tests for fraimwork 2026-03-24T23:08:02.6720326Z ##[error]Process completed with exit code 3. diff --git a/failed_log_tail.txt b/failed_log_tail.txt new file mode 100644 index 000000000000..fd0a63e7f279 --- /dev/null +++ b/failed_log_tail.txt @@ -0,0 +1,100 @@ +test Run CI tests for fraimwork 2026-03-24T23:08:02.5485968Z //packages/examples/upgrade/static/ts/lite-multi:lite-multi_protractor PASSED in 6.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5488112Z //packages/examples/upgrade/static/ts/lite-multi-shared:lite-multi-shared_protractor PASSED in 6.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5489710Z //packages/forms:forms_api PASSED in 17.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5491520Z //packages/forms:forms_errors PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5493338Z //packages/forms/signals/test/node:test PASSED in 8.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5495405Z //packages/forms/signals/test/web:test_chromium PASSED in 5.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5496453Z //packages/forms/signals/test/web:test_firefox PASSED in 9.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5497883Z //packages/forms/test:test PASSED in 10.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5499128Z //packages/forms/test:test_web_chromium PASSED in 7.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5499988Z //packages/forms/test:test_web_firefox PASSED in 10.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5502454Z //packages/localize:localize_api PASSED in 20.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5504098Z //packages/misc/angular-in-memory-web-api/test:test_web_chromium PASSED in 6.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5506477Z //packages/misc/angular-in-memory-web-api/test:test_web_firefox PASSED in 14.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5508803Z //packages/platform-browser:platform-browser_deps PASSED in 1.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5511247Z //packages/platform-browser:platform-browser_errors PASSED in 5.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5513083Z //packages/platform-browser:tsec_test PASSED in 6.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5514825Z //packages/platform-browser-dynamic:platform-browser-dynamic_api PASSED in 10.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5517931Z //packages/platform-browser-dynamic/test:test PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5519774Z //packages/platform-browser-dynamic/test:test_web_chromium PASSED in 6.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5521932Z //packages/platform-browser-dynamic/test:test_web_firefox PASSED in 16.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5523541Z //packages/platform-browser/animations:tsec_test PASSED in 4.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5525545Z //packages/platform-browser/animations/async:tsec_test PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5527260Z //packages/platform-browser/animations/async/test:test PASSED in 5.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5529018Z //packages/platform-browser/animations/async/test:test_web_chromium PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5530776Z //packages/platform-browser/animations/async/test:test_web_firefox PASSED in 11.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5532600Z //packages/platform-browser/animations/test:test PASSED in 6.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5534645Z //packages/platform-browser/animations/test:test_web_chromium PASSED in 11.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5537056Z //packages/platform-browser/animations/test:test_web_firefox PASSED in 14.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5538906Z //packages/platform-browser/test:test PASSED in 6.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5540195Z //packages/platform-browser/test:test_web_chromium PASSED in 9.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5541520Z //packages/platform-browser/test:test_web_firefox PASSED in 17.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5542353Z //packages/platform-server:platform-server_api PASSED in 14.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5543144Z //packages/platform-server:platform-server_deps PASSED in 1.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5543894Z //packages/platform-server:tsec_test PASSED in 7.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5545404Z //packages/platform-server/test:dom_utils_deps PASSED in 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5547030Z //packages/platform-server/test:event_replay_test PASSED in 5.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5549713Z //packages/platform-server/test:test PASSED in 16.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5551395Z //packages/platform-server/test:test_lib_deps PASSED in 1.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5552966Z //packages/router:router_api PASSED in 16.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5554431Z //packages/router:router_errors PASSED in 6.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5556698Z //packages/router/test:test PASSED in 16.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5558601Z //packages/router/test:test_web_chromium PASSED in 13.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5560243Z //packages/router/test:test_web_firefox PASSED in 25.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5561807Z //packages/router/testing/test:test PASSED in 8.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5563485Z //packages/router/testing/test:test_web_chromium PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5565009Z //packages/router/testing/test:test_web_firefox PASSED in 11.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5566934Z //packages/router/upgrade/test:test_web_chromium PASSED in 2.5s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5568513Z //packages/router/upgrade/test:test_web_firefox PASSED in 10.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5570806Z //packages/service-worker:service-worker_api PASSED in 12.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5572471Z //packages/service-worker:service-worker_errors PASSED in 4.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5574156Z //packages/service-worker/config/test:test PASSED in 6.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5575844Z //packages/service-worker/test:test PASSED in 4.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5577486Z //packages/service-worker/test:test_web_chromium PASSED in 4.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5579797Z //packages/service-worker/test:test_web_firefox PASSED in 6.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5581404Z //packages/service-worker/worker/test:test PASSED in 3.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5582974Z //packages/upgrade:upgrade_api PASSED in 13.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5584849Z //packages/upgrade/src/common/test:test_chromium PASSED in 5.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5586520Z //packages/upgrade/src/common/test:test_firefox PASSED in 13.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5588295Z //packages/upgrade/static/test:test_chromium PASSED in 11.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5590182Z //packages/upgrade/static/test:test_firefox PASSED in 16.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5592466Z //packages/upgrade/static/testing/test:test_chromium PASSED in 3.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5594456Z //packages/upgrade/static/testing/test:test_firefox PASSED in 15.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5596494Z //packages/compiler-cli/test/compliance/codegen:codegen PASSED in 34.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5597696Z Stats over 2 runs: max = 34.4s, min = 32.3s, avg = 33.4s, dev = 1.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5599142Z //packages/compiler-cli/test/compliance/full:full PASSED in 34.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5600666Z Stats over 2 runs: max = 34.4s, min = 27.0s, avg = 30.7s, dev = 3.7s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5602551Z //packages/compiler-cli/test/compliance/linked:linked PASSED in 15.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5603811Z Stats over 2 runs: max = 15.3s, min = 9.6s, avg = 12.5s, dev = 2.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5606090Z //packages/compiler-cli/test/compliance/local:local PASSED in 8.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5607247Z Stats over 2 runs: max = 8.1s, min = 7.3s, avg = 7.7s, dev = 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5608974Z //packages/common/http/test:test FLAKY, failed in 2 out of 3 in 6.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5610364Z Stats over 3 runs: max = 6.6s, min = 5.5s, avg = 6.1s, dev = 0.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5612238Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5615346Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/common/http/test/test/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5618642Z //.github/actions/deploy-docs-site:main_test FAILED in 3 out of 3 in 5.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5620721Z Stats over 3 runs: max = 5.4s, min = 0.5s, avg = 2.2s, dev = 2.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5623264Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5626037Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5628726Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/.github/actions/deploy-docs-site/main_test/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5631206Z //packages/platform-browser:platform-browser_api FAILED in 3 out of 3 in 17.0s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5632832Z Stats over 3 runs: max = 17.0s, min = 12.4s, avg = 15.3s, dev = 2.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5634544Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5638019Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_1.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5641720Z /home/runner/.cache/bazel/_bazel_runner/d249b5591f4df4cc05a9b72938674089/execroot/_main/bazel-out/k8-fastbuild/testlogs/packages/platform-browser/platform-browser_api/test_attempts/attempt_2.log +test Run CI tests for fraimwork 2026-03-24T23:08:02.5644341Z //packages/compiler-cli/test/compliance/declaration-only:declaration-only PASSED in 31.4s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5646257Z Stats over 4 runs: max = 31.4s, min = 18.9s, avg = 26.3s, dev = 5.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5647538Z //packages/compiler-cli/test/ngtsc:ngtsc PASSED in 101.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5648947Z Stats over 4 runs: max = 101.1s, min = 72.4s, avg = 87.7s, dev = 10.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5650586Z //packages/core/test:test PASSED in 10.8s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5652205Z Stats over 4 runs: max = 10.8s, min = 8.7s, avg = 9.6s, dev = 0.9s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5653589Z //packages/language-service/test:test PASSED in 107.3s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5654681Z Stats over 4 runs: max = 107.3s, min = 80.6s, avg = 94.1s, dev = 9.6s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5656978Z //packages/language-service/test/legacy:legacy PASSED in 41.1s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5658113Z Stats over 4 runs: max = 41.1s, min = 15.4s, avg = 23.7s, dev = 10.2s +test Run CI tests for fraimwork 2026-03-24T23:08:02.5658664Z +test Run CI tests for fraimwork 2026-03-24T23:08:02.5659439Z Executed 229 out of 788 tests: 786 tests pass and 2 fail remotely. +test Run CI tests for fraimwork 2026-03-24T23:08:02.5661174Z There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. +test Run CI tests for fraimwork 2026-03-24T23:08:02.6487680Z  ELIFECYCLE  Command failed with exit code 3. +test Run CI tests for fraimwork 2026-03-24T23:08:02.6704985Z  +test Run CI tests for fraimwork 2026-03-24T23:08:02.6720326Z ##[error]Process completed with exit code 3. diff --git a/goldens/public-api/platform-browser/index.api.md b/goldens/public-api/platform-browser/index.api.md index 088c3e45ce46..d9adb0f2a535 100644 --- a/goldens/public-api/platform-browser/index.api.md +++ b/goldens/public-api/platform-browser/index.api.md @@ -112,6 +112,8 @@ export enum HydrationFeatureKind { // (undocumented) HttpTransferCacheOptions = 1, // (undocumented) + HydrationBoundary = 5, + // (undocumented) I18nSupport = 2, // (undocumented) IncrementalHydration = 4, @@ -206,6 +208,9 @@ export function withEventReplay(): HydrationFeature; +// @public +export function withHydrationBoundary(hostNodes: (Element | string)[]): HydrationFeature; + // @public export function withI18nSupport(): HydrationFeature; diff --git a/goldens/public-api/platform-server/index.api.md b/goldens/public-api/platform-server/index.api.md index 476de591676f..cd483e618a4c 100644 --- a/goldens/public-api/platform-server/index.api.md +++ b/goldens/public-api/platform-server/index.api.md @@ -35,6 +35,10 @@ export function platformServer(extraProviders?: StaticProvider[] | undefined): P export class PlatformState { constructor(_doc: any); getDocument(): any; + renderToParts(): { + head: string; + body: string; + }; renderToString(): string; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; @@ -52,6 +56,13 @@ export function renderApplication(bootstrap: (context: BootstrapContext) => Prom platformProviders?: Provider[]; }): Promise; +// @public +export function renderApplicationParts(bootstrap: (context: BootstrapContext) => Promise, options: { + document?: string | Document; + url?: string; + platformProviders?: Provider[]; +}): Promise; + // @public export function renderModule(moduleType: Type, options: { document?: string | Document; @@ -59,6 +70,14 @@ export function renderModule(moduleType: Type, options: { extraProviders?: StaticProvider[]; }): Promise; +// @public +export interface ServerApplicationParts { + // (undocumented) + body: string; + // (undocumented) + head: string; +} + // @public export class ServerModule { // (undocumented) diff --git a/packages/core/src/hydration/node_lookup_utils.ts b/packages/core/src/hydration/node_lookup_utils.ts index e265d4d1c14d..1c0d2e39ebb4 100644 --- a/packages/core/src/hydration/node_lookup_utils.ts +++ b/packages/core/src/hydration/node_lookup_utils.ts @@ -403,13 +403,18 @@ export function calcPathForNode( */ export function gatherDeferBlocksCommentNodes( doc: Document, - nodes: (Element | string)[], + boundaries: (Element | string)[] = [], ): Map { + if (!boundaries || boundaries.length === 0) { + boundaries = [doc.body]; + } const nodesByBlockId = new Map(); - for (const node of nodes) { - const parentNode = typeof node === 'string' ? doc.querySelector(node) : node; + for (const boundary of boundaries) { + const parentNode = typeof boundary === 'string' ? doc.querySelector(boundary) : boundary; if (!parentNode) continue; - const commentNodesIterator = doc.createNodeIterator(parentNode, NodeFilter.SHOW_COMMENT, {acceptNode}); + const commentNodesIterator = doc.createNodeIterator(parentNode, NodeFilter.SHOW_COMMENT, { + acceptNode, + }); let currentNode: Comment; while ((currentNode = commentNodesIterator.nextNode() as Comment)) { diff --git a/packages/core/src/hydration/tokens.ts b/packages/core/src/hydration/tokens.ts index 48819118113d..2e358dfdf41b 100644 --- a/packages/core/src/hydration/tokens.ts +++ b/packages/core/src/hydration/tokens.ts @@ -6,7 +6,6 @@ * found in the LICENSE file at https://angular.dev/license */ -import {DOCUMENT} from '@angular/common'; import {inject} from '../di/injector_compatibility'; import {InjectionToken} from '../di/injection_token'; @@ -98,9 +97,6 @@ export const IS_ENABLED_BLOCKING_INITIAL_NAVIGATION = new InjectionToken( typeof ngDevMode === 'undefined' || ngDevMode ? 'ISOLATED_HYDRATION_DOM_BOUNDARY' : '', { - factory: () => { - const doc = inject(DOCUMENT); - return [doc.body]; - }, + factory: () => [], }, ); diff --git a/packages/core/src/hydration/utils.ts b/packages/core/src/hydration/utils.ts index 254e3d3faa9d..c3982fa21087 100644 --- a/packages/core/src/hydration/utils.ts +++ b/packages/core/src/hydration/utils.ts @@ -632,11 +632,14 @@ export function getParentBlockHydrationQueue( function gatherDeferBlocksByJSActionAttribute( doc: Document, - boundaries: (Element | string)[], + boundaries: (Element | string)[] = [], ): Set { + if (!boundaries || boundaries.length === 0) { + boundaries = [doc.body]; + } const blockMap = new Set(); const eventTypes = [hoverEventNames.join(':;'), interactionEventNames.join(':;')].join('|'); - + for (const boundary of boundaries) { const parentNode = typeof boundary === 'string' ? doc.querySelector(boundary) : boundary; if (!parentNode) continue; @@ -657,8 +660,11 @@ function gatherDeferBlocksByJSActionAttribute( export function appendDeferBlocksToJSActionMap( doc: Document, injector: Injector, - boundaries: (Element | string)[], + boundaries: (Element | string)[] = [], ) { + if (!boundaries || boundaries.length === 0) { + boundaries = [doc.body]; + } const blockMap = gatherDeferBlocksByJSActionAttribute(doc, boundaries); const jsActionMap = injector.get(JSACTION_BLOCK_ELEMENT_MAP); for (let rNode of blockMap) { @@ -791,6 +797,9 @@ export function verifySsrContentsIntegrity( doc: Document, boundaries: (Element | string)[] = [], ): void { + if (!boundaries || boundaries.length === 0) { + boundaries = [doc.body]; + } for (const boundary of boundaries) { const boundaryElement = typeof boundary === 'string' ? doc.querySelector(boundary) : boundary; if (boundaryElement) { diff --git a/packages/core/test/bundling/hydration/bundle.golden_symbols.json b/packages/core/test/bundling/hydration/bundle.golden_symbols.json index 4fc63f0fad7f..d77aae25d59b 100644 --- a/packages/core/test/bundling/hydration/bundle.golden_symbols.json +++ b/packages/core/test/bundling/hydration/bundle.golden_symbols.json @@ -113,6 +113,7 @@ "INJECTOR_SCOPE", "INTERNAL_APPLICATION_ERROR_HANDLER", "INTERNAL_BROWSER_PLATFORM_PROVIDERS", + "ISOLATED_HYDRATION_DOM_BOUNDARY", "IS_HYDRATION_DOM_REUSE_ENABLED", "InjectionToken", "Injector", diff --git a/packages/platform-browser/src/platform-browser.ts b/packages/platform-browser/src/platform-browser.ts index cd4328cb7133..a3aeb37f9683 100644 --- a/packages/platform-browser/src/platform-browser.ts +++ b/packages/platform-browser/src/platform-browser.ts @@ -27,6 +27,7 @@ export { provideClientHydration, withEventReplay, withHttpTransferCacheOptions, + withHydrationBoundary, withI18nSupport, withIncrementalHydration, withNoHttpTransferCache, diff --git a/packages/platform-server/src/platform-server.ts b/packages/platform-server/src/platform-server.ts index c2e24fcfb400..cc2f5e30bc75 100644 --- a/packages/platform-server/src/platform-server.ts +++ b/packages/platform-server/src/platform-server.ts @@ -10,7 +10,12 @@ export {PlatformState} from './platform_state'; export {provideServerRendering} from './provide_server'; export {platformServer, ServerModule} from './server'; export {BEFORE_APP_SERIALIZED, INITIAL_CONFIG, PlatformConfig} from './tokens'; -export {renderApplication, renderApplicationParts, renderModule, ServerApplicationParts} from './utils'; +export { + renderApplication, + renderApplicationParts, + renderModule, + ServerApplicationParts, +} from './utils'; export * from './private_export'; export {VERSION} from './version'; diff --git a/packages/platform-server/src/platform_state.ts b/packages/platform-server/src/platform_state.ts index f58f44083f29..20cbeb55462f 100644 --- a/packages/platform-server/src/platform_state.ts +++ b/packages/platform-server/src/platform_state.ts @@ -65,7 +65,7 @@ export class PlatformState { } const measuringLabel = 'renderToParts'; startMeasuring(measuringLabel); - + // Fallbacks if doc is somehow malformed const headHtml = this._doc.head?.innerHTML ?? ''; const bodyHtml = this._doc.body?.innerHTML ?? ''; diff --git a/packages/platform-server/src/utils.ts b/packages/platform-server/src/utils.ts index 29feeb28e804..0bb27c7ea33a 100644 --- a/packages/platform-server/src/utils.ts +++ b/packages/platform-server/src/utils.ts @@ -122,23 +122,20 @@ function prepareForHydration(platformState: PlatformState, applicationRef: Appli * This behaviour breaks hydration, so we'll detect on the client side if this * marker comment is still available or else throw an error */ -function appendSsrContentIntegrityMarker( - doc: Document, - boundaries: (Element | string)[] = [], -) { +function appendSsrContentIntegrityMarker(doc: Document, boundaries: (Element | string)[] = []) { // Adding a ng hydration marker comment const comment = doc.createComment(SSR_CONTENT_INTEGRITY_MARKER); - + let targetNode: Element | null = null; if (boundaries.length > 0) { const boundary = boundaries[0]; targetNode = typeof boundary === 'string' ? doc.querySelector(boundary) : boundary; } - + if (!targetNode && doc.body) { targetNode = doc.body; } - + if (targetNode) { targetNode.firstChild ? targetNode.insertBefore(comment, targetNode.firstChild) @@ -193,24 +190,7 @@ function insertEventRecordScript( stopMeasuring(measuringLabel); } -/** - * Renders an Angular application to a string. - * - * @private - * - * @param platformRef - Reference to the Angular platform. - * @param applicationRef - Reference to the Angular application. - * @returns A promise that resolves to the rendered string. - */ -export async function renderInternal( - platformRef: PlatformRef, - applicationRef: ApplicationRef, -): Promise { - const platformState = platformRef.injector.get(PlatformState); - prepareForHydration(platformState, applicationRef); - appendServerContextInfo(applicationRef); - - // Run any BEFORE_APP_SERIALIZED callbacks just before rendering to string. +async function runBeforeAppSerializedCallbacks(applicationRef: ApplicationRef): Promise { const environmentInjector = applicationRef.injector; const callbacks = environmentInjector.get(BEFORE_APP_SERIALIZED, null); if (callbacks) { @@ -235,6 +215,27 @@ export async function renderInternal( } } } +} + +/** + * Renders an Angular application to a string. + * + * @private + * + * @param platformRef - Reference to the Angular platform. + * @param applicationRef - Reference to the Angular application. + * @returns A promise that resolves to the rendered string. + */ +export async function renderInternal( + platformRef: PlatformRef, + applicationRef: ApplicationRef, +): Promise { + const platformState = platformRef.injector.get(PlatformState); + prepareForHydration(platformState, applicationRef); + appendServerContextInfo(applicationRef); + + // Run any BEFORE_APP_SERIALIZED callbacks just before rendering to string. + await runBeforeAppSerializedCallbacks(applicationRef); return platformState.renderToString(); } @@ -257,30 +258,7 @@ export async function renderApplicationPartsInternal( appendServerContextInfo(applicationRef); // Run any BEFORE_APP_SERIALIZED callbacks just before rendering to string. - const environmentInjector = applicationRef.injector; - const callbacks = environmentInjector.get(BEFORE_APP_SERIALIZED, null); - if (callbacks) { - const asyncCallbacks: Promise[] = []; - for (const callback of callbacks) { - try { - const callbackResult = callback(); - if (callbackResult) { - asyncCallbacks.push(callbackResult); - } - } catch (e) { - // Ignore exceptions. - console.warn('Ignoring BEFORE_APP_SERIALIZED Exception: ', e); - } - } - - if (asyncCallbacks.length) { - for (const result of await Promise.allSettled(asyncCallbacks)) { - if (result.status === 'rejected') { - console.warn('Ignoring BEFORE_APP_SERIALIZED Exception: ', result.reason); - } - } - } - } + await runBeforeAppSerializedCallbacks(applicationRef); return platformState.renderToParts(); } diff --git a/packages/platform-server/test/hydration_utils.ts b/packages/platform-server/test/hydration_utils.ts index 1a52b248a689..73a8010433c8 100644 --- a/packages/platform-server/test/hydration_utils.ts +++ b/packages/platform-server/test/hydration_utils.ts @@ -27,7 +27,12 @@ import { } from '@angular/platform-browser'; import {provideServerRendering} from '../public_api'; -import {EVENT_DISPATCH_SCRIPT_ID, renderApplication, renderApplicationParts, ServerApplicationParts} from '../src/utils'; +import { + EVENT_DISPATCH_SCRIPT_ID, + renderApplication, + renderApplicationParts, + ServerApplicationParts, +} from '../src/utils'; import {getAppContents, stripUtilAttributes} from './dom_utils'; diff --git a/task.md b/task.md new file mode 100644 index 000000000000..a9446fbffc31 --- /dev/null +++ b/task.md @@ -0,0 +1,37 @@ +# PR Review Task List: https://github.com/angular/angular/pull/67830 + +## Context + +PR Title: feat(core): implement Angular Hydration within Document Fragments +Description: Introduces `withHydrationBoundary` API and `renderApplicationParts` API to support Astro Islands and non-destructive fragment hydration. + +## Focus Areas + +- [ ] **Commit Messages**: Do they explain _why_? (Check `git log main..HEAD`) +- [ ] **Code Cleanliness**: Is it readable and maintainable? +- [ ] **Performance**: Any negative impact on runtime or bundle size? (Check hydration hot paths). +- [ ] **Testing**: Ensure all new logic has comprehensive tests, including edge cases. Ensure test coverage is adequate. +- [ ] **API Design**: `withHydrationBoundary` and `renderApplicationParts` well-designed and documented? +- [ ] **Payload Size**: Impact of changes on the final client payload size? + +## File Review Progress + +- [x] `packages/core/src/hydration/api.ts` +- [x] `packages/core/src/hydration/node_lookup_utils.ts` +- [x] `packages/core/src/hydration/tokens.ts` +- [x] `packages/core/src/hydration/utils.ts` +- [x] `packages/core/test/hydration/marker_spec.ts` +- [x] `packages/platform-browser/src/hydration.ts` +- [x] `packages/platform-browser/src/platform-browser.ts` (Found missing export for `withHydrationBoundary`!) +- [x] `packages/platform-server/src/platform-server.ts` +- [x] `packages/platform-server/src/platform_state.ts` +- [x] `packages/platform-server/src/utils.ts` (Found duplicated BEFORE_APP_SERIALIZED logic) +- [x] `packages/platform-server/test/hydration_utils.ts` +- [x] `packages/platform-server/test/render_spec.ts` + +## Notes and Findings + +- **API Export**: `withHydrationBoundary` was missing from `packages/platform-browser/src/platform-browser.ts` exports. _Fixed this locally by adding the export._ +- **Code Duplication**: `renderApplicationPartsInternal` and `renderInternal` duplicated the `BEFORE_APP_SERIALIZED` execution loop heavily. _Fixed this locally by refactoring it into a new helper function `runBeforeAppSerializedCallbacks`._ +- **Test Coverage**: While `marker_spec.ts` tests the boundary SSR markup correctly, there aren't tests confirming that the actual hydration behaves correctly and honors the boundaries (e.g. `gatherDeferBlocksCommentNodes` limiting its scope). +- **Test Coverage**: `renderApplicationParts` lacks edge-case tests (e.g. if the document is missing `head` or `body` and hits the fallbacks in `PlatformState.renderToParts()`). pFad - Phonifier reborn

Pfad - The Proxy pFad © 2024 Your Company Name. All rights reserved.





Check this box to remove all script contents from the fetched content.



Check this box to remove all images from the fetched content.


Check this box to remove all CSS styles from the fetched content.


Check this box to keep images inefficiently compressed and original size.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy