brewman/overlord/src/app/net-transactions/net-transactions.service.spec.ts

16 lines
425 B
TypeScript
Raw Normal View History

import {inject, TestBed} from '@angular/core/testing';
import {NetTransactionsService} from './net-transactions.service';
describe('NetTransactionsService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [NetTransactionsService]
});
});
it('should be created', inject([NetTransactionsService], (service: NetTransactionsService) => {
expect(service).toBeTruthy();
}));
});