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