Skip to content

Commit

Permalink
fix more karma tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kewde committed Jul 3, 2017
1 parent f403c1d commit 9ecb6ac
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/app/wallet/shared/transaction.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,19 @@ import { TestBed, inject } from '@angular/core/testing';

import { TransactionService } from './transaction.service';

import { ElectronService } from 'ngx-electron';
import { AppService } from '../../app.service';
import { RPCService } from '../../core/rpc/rpc.service';

describe('TransactionService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [TransactionService]
providers: [
TransactionService,
AppService,
ElectronService,
RPCService
]
});
});

Expand Down

0 comments on commit 9ecb6ac

Please sign in to comment.