srr-elapsedtimer
Version:
An angular library to create a elapsed timer for your angular project
26 lines (20 loc) • 668 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ElapsedtimerComponent } from './elapsedtimer.component';
describe('ElapsedtimerComponent', () => {
let component: ElapsedtimerComponent;
let fixture: ComponentFixture<ElapsedtimerComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ElapsedtimerComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ElapsedtimerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});