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
412 B
TypeScript
16 lines
412 B
TypeScript
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { ClosingStockService } from './closing-stock.service';
|
|
|
|
describe('ClosingStockService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [ClosingStockService],
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([ClosingStockService], (service: ClosingStockService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|