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