2020-10-01 15:21:22 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
2018-05-25 13:49:00 +00:00
|
|
|
|
2020-10-01 15:21:22 +00:00
|
|
|
import { LedgerComponent } from './ledger.component';
|
2018-05-25 13:49:00 +00:00
|
|
|
|
|
|
|
describe('LedgerComponent', () => {
|
|
|
|
let component: LedgerComponent;
|
|
|
|
let fixture: ComponentFixture<LedgerComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-10-01 15:21:22 +00:00
|
|
|
declarations: [LedgerComponent],
|
|
|
|
}).compileComponents();
|
2018-05-25 13:49:00 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(LedgerComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|