16 lines
425 B
TypeScript
16 lines
425 B
TypeScript
|
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();
|
||
|
}));
|
||
|
});
|