cic-staff-client/src/app/_services/transaction.service.spec.ts

17 lines
382 B
TypeScript
Raw Normal View History

2020-11-04 13:35:20 +01:00
import { TestBed } from '@angular/core/testing';
import { TransactionService } from './transaction.service';
describe('TransactionService', () => {
let service: TransactionService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(TransactionService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});