/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/defer/baseline/main.ts
20 строк
615 B
Andrew Scott
refactor(core): Update tests for zoneless by default (#63668)
10 сен 2025, 00:41
10 сен 2025, 00:41
c357650
Код
Авторство
О чём код?
/** * @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 {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser'; import {init, syncUrlParamsToForm} from '../init'; import {AppComponent} from './app.component'; import {provideZoneChangeDetection} from '@angular/core'; syncUrlParamsToForm(); bootstrapApplication(AppComponent, { providers: [provideZoneChangeDetection(), provideProtractorTestingSupport()], }).then(init);