blob: 0e5555b48a617bd1b1ff05a141d2fa54ae7b4dff [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AddLedgerComponent } from './add-ledger.component';
describe('AddLedgerComponent', () => {
let component: AddLedgerComponent;
let fixture: ComponentFixture<AddLedgerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AddLedgerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AddLedgerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});