mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit adds a Forms-based test app into the `integration` folder to have an ability to measure and keep track of payload size for the changes in Forms package. PR Close #41045
18 lines
490 B
TypeScript
18 lines
490 B
TypeScript
import {TestBed, waitForAsync} from '@angular/core/testing';
|
|
import {AppComponent} from './app.component';
|
|
|
|
describe('AppComponent', () => {
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed
|
|
.configureTestingModule({
|
|
declarations: [AppComponent],
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
it('should create the app', () => {
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
const app = fixture.componentInstance;
|
|
expect(app).toBeTruthy();
|
|
});
|
|
});
|