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