Added prettier and also prettied all the typescript files using prettier ESLint is using the AirBnB rules which are the most strict to lint the files.
16 lines
414 B
TypeScript
16 lines
414 B
TypeScript
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { ProfitLossResolver } from './profit-loss-resolver.service';
|
|
|
|
describe('ProfitLossResolver', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [ProfitLossResolver],
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([ProfitLossResolver], (service: ProfitLossResolver) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|