import { ComponentFixture, TestBed } from '@angular/core/testing'; import { MoodelComponent } from './moodel.component'; describe('MoodelComponent', () => { let component: MoodelComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [MoodelComponent] }) .compileComponents(); fixture = TestBed.createComponent(MoodelComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });