17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ReceiptService } from './receipt.service';
|
|
|
|
describe('ReceiptService', () => {
|
|
let service: ReceiptService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(ReceiptService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|