r-number
Version:
Convert Number to Roman Number foramt in your angular app with this npm package
26 lines (20 loc) • 679 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NgRomanNumberComponent } from './ng-roman-number.component';
describe('NgRomanNumberComponent', () => {
let component: NgRomanNumberComponent;
let fixture: ComponentFixture<NgRomanNumberComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ NgRomanNumberComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NgRomanNumberComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});