insight-tcr
Version:
A blockchain explorer for Bitcore
25 lines (19 loc) • 636 B
text/typescript
import { async, ComponentFixture, TestBed } from "@angular/core/testing";
import { DateTimeComponent } from "./date-time.component";
describe('DateTimeComponent', () => {
let component: DateTimeComponent;
let fixture: ComponentFixture<DateTimeComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [DateTimeComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(DateTimeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});