Files
brewman/overlord/src/app/profit-loss/profit-loss.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
492 B
TypeScript

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