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