25 lines
630 B
TypeScript
25 lines
630 B
TypeScript
import {ComponentFixture, TestBed, waitForAsync} from '@angular/core/testing';
|
|
|
|
import {BrandComponent} from './brand.component';
|
|
|
|
describe('BrandComponent', () => {
|
|
let component: BrandComponent;
|
|
let fixture: ComponentFixture<BrandComponent>;
|
|
|
|
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();
|
|
});
|
|
});
|