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

28 lines
841 B
TypeScript
Raw Normal View History

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