UNPKG

insight-tcr

Version:

A blockchain explorer for Bitcore

25 lines (19 loc) 656 B
import { async, ComponentFixture, TestBed } from "@angular/core/testing"; import { TransactionComponent } from "./transaction.component"; describe('TransactionComponent', () => { let component: TransactionComponent; let fixture: ComponentFixture<TransactionComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [TransactionComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TransactionComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });