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