Alexis Hernandez
7 years ago
6 changed files with 12 additions and 12 deletions
@ -1,20 +1,20 @@ |
|||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
|
||||
import { TransactionFinderComponent } from './transaction-finder.component'; |
import { FinderComponent } from './finder.component'; |
||||
|
|
||||
describe('TransactionFinderComponent', () => { |
describe('TransactionFinderComponent', () => { |
||||
let component: TransactionFinderComponent; |
let component: FinderComponent; |
||||
let fixture: ComponentFixture<TransactionFinderComponent>; |
let fixture: ComponentFixture<FinderComponent>; |
||||
|
|
||||
beforeEach(async(() => { |
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
TestBed.configureTestingModule({ |
||||
declarations: [ TransactionFinderComponent ] |
declarations: [ FinderComponent ] |
||||
}) |
}) |
||||
.compileComponents(); |
.compileComponents(); |
||||
})); |
})); |
||||
|
|
||||
beforeEach(() => { |
beforeEach(() => { |
||||
fixture = TestBed.createComponent(TransactionFinderComponent); |
fixture = TestBed.createComponent(FinderComponent); |
||||
component = fixture.componentInstance; |
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
fixture.detectChanges(); |
||||
}); |
}); |
@ -1,3 +1,3 @@ |
|||||
<div> |
<div> |
||||
<app-transaction-finder></app-transaction-finder> |
<app-finder></app-finder> |
||||
</div> |
</div> |
||||
|
Loading…
Reference in new issue