UNPKG

@7kasper/ngx-fittext

Version:

**@7kasper/ngx-fittext** is an Angular library that allow you fit text in a box or a line.

26 lines (20 loc) 659 B
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { FitTextComponent } from './fit-text.component'; describe('FitTextComponent', () => { let component: FitTextComponent; let fixture: ComponentFixture<FitTextComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ FitTextComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(FitTextComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });