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