brewman/overlord/src/app/balance-sheet/balance-sheet.component.spec.ts

26 lines
667 B
TypeScript
Raw Normal View History

import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {BalanceSheetComponent} from './balance-sheet.component';
describe('BalanceSheetComponent', () => {
let component: BalanceSheetComponent;
let fixture: ComponentFixture<BalanceSheetComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [BalanceSheetComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(BalanceSheetComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});