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