2019-05-31 15:56:07 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-05-31 15:56:07 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2019-05-31 15:56:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import './common/microtasks.spec';
|
|
|
|
|
import './common/zone.spec';
|
|
|
|
|
import './common/task.spec';
|
|
|
|
|
import './common/util.spec';
|
|
|
|
|
import './common/Promise.spec';
|
2023-05-25 15:44:17 +00:00
|
|
|
import './common/queue-microtask.spec';
|
2019-05-31 15:56:07 +00:00
|
|
|
import './common/fetch.spec';
|
|
|
|
|
import './common/Error.spec';
|
|
|
|
|
import './common/setInterval.spec';
|
|
|
|
|
import './common/setTimeout.spec';
|
|
|
|
|
import './common/toString.spec';
|
|
|
|
|
import './zone-spec/long-stack-trace-zone.spec';
|
|
|
|
|
import './zone-spec/async-test.spec';
|
|
|
|
|
import './zone-spec/sync-test.spec';
|
|
|
|
|
import './zone-spec/fake-async-test.spec';
|
|
|
|
|
import './zone-spec/proxy.spec';
|
|
|
|
|
import './zone-spec/task-tracking.spec';
|
2025-07-23 18:26:58 +00:00
|
|
|
// TODO: Reenable this set of tests after sorting through errors.
|
|
|
|
|
// Content: Previously, all import paths that contained the string `rxjs` were marked as external
|
|
|
|
|
// causing these test to never actually run. As part of our migration we are "recreating" this
|
|
|
|
|
// by skipping this import.
|
|
|
|
|
// import './rxjs/rxjs.spec';
|
2019-05-31 15:56:07 +00:00
|
|
|
|
|
|
|
|
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
|