angular/tools/testing/zone_base_setup.mts
Joey Perrott 61c731a21b build: update tools directory to use rules_js for building (#61658)
Use ts_project for building the tools directory targets

PR Close #61658
2025-05-26 09:58:38 +00:00

27 lines
898 B
TypeScript

/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import 'reflect-metadata';
import {} from 'zone.js';
import {patchLongStackTrace} from 'zone.js/lib/zone-spec/long-stack-trace';
import {patchTaskTracking} from 'zone.js/lib/zone-spec/task-tracking';
import {patchProxyZoneSpec} from 'zone.js/lib/zone-spec/proxy';
import {patchSyncTest} from 'zone.js/lib/zone-spec/sync-test';
import {patchAsyncTest} from 'zone.js/lib/zone-spec/async-test';
import {patchFakeAsyncTest} from 'zone.js/lib/zone-spec/fake-async-test';
import {patchJasmine} from 'zone.js/lib/jasmine/jasmine';
patchLongStackTrace(Zone);
patchTaskTracking(Zone);
patchProxyZoneSpec(Zone);
patchSyncTest(Zone);
patchAsyncTest(Zone);
patchFakeAsyncTest(Zone);
patchJasmine(Zone);