2016-09-07 23:04:33 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-09-07 23:04:33 +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
|
2016-09-07 23:04:33 +00:00
|
|
|
*/
|
2019-01-28 20:59:25 +00:00
|
|
|
|
2025-06-09 21:39:42 +00:00
|
|
|
import 'zone.js';
|
|
|
|
|
import 'zone.js/plugins/task-tracking';
|
2022-12-14 11:38:07 +00:00
|
|
|
|
|
|
|
|
// okd
|
|
|
|
|
|
2025-10-01 08:31:04 +00:00
|
|
|
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';
|
|
|
|
|
import {routes, TestsAppComponent} from './test_app_component';
|
|
|
|
|
import {ApplicationConfig, provideZoneChangeDetection} from '@angular/core';
|
|
|
|
|
import {provideRouter} from '@angular/router';
|
|
|
|
|
import {provideAnimations} from '@angular/platform-browser/animations';
|
2016-09-07 23:04:33 +00:00
|
|
|
|
2025-10-01 08:31:04 +00:00
|
|
|
const appConfig: ApplicationConfig = {
|
|
|
|
|
providers: [
|
|
|
|
|
provideRouter(routes),
|
|
|
|
|
provideAnimations(),
|
|
|
|
|
provideZoneChangeDetection(),
|
|
|
|
|
provideProtractorTestingSupport(),
|
|
|
|
|
],
|
|
|
|
|
};
|
2022-02-03 01:00:31 +00:00
|
|
|
|
2025-10-01 08:31:04 +00:00
|
|
|
bootstrapApplication(TestsAppComponent, appConfig).catch((err) => console.error(err));
|