-
Kawtar Laariche authoredKawtar Laariche authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
model-list.component.spec.ts 618 B
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ModelListComponent } from './model-list.component';
describe('ModelListComponent', () => {
let component: ModelListComponent;
let fixture: ComponentFixture<ModelListComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ModelListComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ModelListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});