@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
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FitLineComponent } from './fit-line.component';
describe('FitLineComponent', () => {
let component: FitLineComponent;
let fixture: ComponentFixture<FitLineComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ FitLineComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(FitLineComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});