mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This integration test aims to cover that we do not break the code splitting of the animation module when we use `provideAnimationsAsync()`. PR Close #50738
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import {TestBed, waitForAsync} from '@angular/core/testing';
|
|
|
|
import {AppComponent} from './app.component';
|
|
|
|
describe('AppComponent', () => {
|
|
it('should create the app', () => {
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
const app = fixture.componentInstance;
|
|
expect(app).toBeTruthy();
|
|
});
|
|
});
|