Blacked and isorted the python files
Prettied and eslinted the typescript/html files
This commit is contained in:
@ -1,15 +1,18 @@
|
||||
import {inject, TestBed} from '@angular/core/testing';
|
||||
import { inject, TestBed } from '@angular/core/testing';
|
||||
|
||||
import {ProductSaleReportService} from './product-sale-report.service';
|
||||
import { ProductSaleReportService } from './product-sale-report.service';
|
||||
|
||||
describe('ProductSaleReportService', () => {
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
providers: [ProductSaleReportService]
|
||||
providers: [ProductSaleReportService],
|
||||
});
|
||||
});
|
||||
|
||||
it('should be created', inject([ProductSaleReportService], (service: ProductSaleReportService) => {
|
||||
expect(service).toBeTruthy();
|
||||
}));
|
||||
it('should be created', inject(
|
||||
[ProductSaleReportService],
|
||||
(service: ProductSaleReportService) => {
|
||||
expect(service).toBeTruthy();
|
||||
},
|
||||
));
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user