brewman/overlord/src/app/balance-sheet/balance-sheet.service.spec.ts
tanshu 57ef355170 Fix: Login deleting old clients was conflicting with login history
Chore: Moved to angular linting using the recommended plugins / settings
2020-12-08 12:09:19 +05:30

18 lines
504 B
TypeScript

import { HttpClientModule } from '@angular/common/http';
import { inject, TestBed } from '@angular/core/testing';
import { BalanceSheetService } from './balance-sheet.service';
describe('BalanceSheetService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientModule],
providers: [BalanceSheetService],
});
});
it('should be created', inject([BalanceSheetService], (service: BalanceSheetService) => {
expect(service).toBeTruthy();
}));
});