angular/integration/legacy-animations-async/src/main.ts
Jessica Janiuk 365ca13b22 test: rename legacy animations integration tests (#62527)
This just prefixes the integration tests associated with the animation packages.

PR Close #62527
2025-07-08 13:28:37 -07:00

17 lines
536 B
TypeScript

import {bootstrapApplication} from '@angular/platform-browser';
import {provideAnimationsAsync} from '@angular/platform-browser/animations/async';
import {provideRouter} from '@angular/router';
import {AppComponent} from './app/app.component';
bootstrapApplication(AppComponent, {
providers: [
provideAnimationsAsync(),
provideRouter([
{
path: '',
loadComponent: () => import('./app/open-close.component').then((m) => m.OpenCloseComponent),
},
]),
],
}).catch((err) => console.error(err));