@7kasper/ngx-fittext
Version:
**@7kasper/ngx-fittext** is an Angular library that allow you fit text in a box or a line.
17 lines (12 loc) • 394 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { NgxFittextService } from './ngx-fittext.service';
describe('NgxFittextService', () => {
let service: NgxFittextService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(NgxFittextService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});