mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
18 lines
660 B
TypeScript
18 lines
660 B
TypeScript
import {TestBed} from '@angular/core/testing';
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
import {AppComponent, ReactiveFormsComponent, TemplateFormsComponent} from './app.component';
|
|
|
|
describe('AppComponent', () => {
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [AppComponent, TemplateFormsComponent, ReactiveFormsComponent],
|
|
imports: [FormsModule, ReactiveFormsModule],
|
|
}).compileComponents();
|
|
});
|
|
|
|
it('should create the app', () => {
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
const app = fixture.componentInstance;
|
|
expect(app).toBeTruthy();
|
|
});
|
|
});
|