brewman/overlord/src/app/trial-balance/trial-balance.service.spec.ts
tanshu cefb3ebdcc Removed old rules from eslint
Tried hand at testing by fixing the spec files with import. However, still many errors and given up now.
2020-10-02 16:24:29 +05:30

18 lines
504 B
TypeScript

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