2017-12-16 11:35:47 -08:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2017-12-16 11:35:47 -08:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 09:23:15 -06:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2017-12-16 11:35:47 -08:00
|
|
|
*/
|
|
|
|
|
|
2025-06-09 21:39:42 +00:00
|
|
|
import 'zone.js';
|
2025-05-23 17:27:09 +00:00
|
|
|
import './zone_base_setup.mjs';
|
2018-10-24 16:02:25 -07:00
|
|
|
import '@angular/compiler'; // For JIT mode. Must be in front of any other @angular/* imports.
|
2022-06-08 15:00:58 -07:00
|
|
|
|
2025-09-09 12:24:22 -07:00
|
|
|
import {NgModule, provideZonelessChangeDetection} from '@angular/core';
|
2017-12-16 11:35:47 -08:00
|
|
|
import {TestBed} from '@angular/core/testing';
|
2025-04-30 14:40:02 +02:00
|
|
|
import {BrowserTestingModule, platformBrowserTesting} from '@angular/platform-browser/testing';
|
2017-12-16 11:35:47 -08:00
|
|
|
import {NoopAnimationsModule} from '@angular/platform-browser/animations';
|
2025-09-09 12:24:22 -07:00
|
|
|
@NgModule({
|
|
|
|
|
providers: [provideZonelessChangeDetection()],
|
|
|
|
|
})
|
|
|
|
|
export class TestModule {}
|
2017-12-16 11:35:47 -08:00
|
|
|
|
2025-09-09 12:24:22 -07:00
|
|
|
TestBed.initTestEnvironment(
|
|
|
|
|
[BrowserTestingModule, NoopAnimationsModule, TestModule],
|
|
|
|
|
platformBrowserTesting(),
|
|
|
|
|
);
|
2017-12-17 15:10:54 -08:00
|
|
|
|
|
|
|
|
(window as any).isNode = false;
|
|
|
|
|
(window as any).isBrowser = true;
|
2020-05-19 12:08:49 -07:00
|
|
|
(window as any).global = window;
|