mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit adds 2 integration apps to verify the `bootstrapApplication` API behavior as well as keep track of the bundle size and retained symbols (tree-shaking). PR Close #45674
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import {TestBed} 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();
|
|
});
|
|
});
|