import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { MatG2BarComponent } from './mat-g2-bar.component'; describe('MatG2BarComponent', () => { let component: MatG2BarComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ MatG2BarComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MatG2BarComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });