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

28 lines
855 B
TypeScript
Raw Normal View History

2020-11-23 11:42:27 +00:00
import { ComponentFixture, TestBed, waitForAsync } 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>;
2020-11-23 11:42:27 +00:00
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [ReactiveFormsModule, RouterTestingModule],
declarations: [BalanceSheetComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(BalanceSheetComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});