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