Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
fix(Coinify): include sub directories in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Oct 26, 2016
1 parent 0436e7a commit 13237a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = function (config) {
'assets/js/walletLazyLoad.js',
'assets/js/core/*.js',
'tests/filters/*.coffee',
'tests/controllers/*.coffee',
'tests/controllers/**/*.coffee',
'tests/components/*.coffee',
'tests/services/**/*.coffee',
'tests/directives/*.coffee',
Expand Down
4 changes: 2 additions & 2 deletions tests/controllers/coinify/coinify_summary_ctrl_spec.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
describe "CoinifySummaryCtrl", ->
describe "CoinifySummaryController", ->
scope = undefined
Wallet = undefined
currency = undefined
Expand Down Expand Up @@ -58,7 +58,7 @@ describe "CoinifySummaryCtrl", ->
getControllerScope = (params = {}) ->
scope = $rootScope.$new()
scope.transaction = {fiat: 0, btc: 0, fee: 0, total: 0, currency: {symbol: 'E', code: 'EUR'}};
$controller "CoinifySummaryCtrl",
$controller "CoinifySummaryController",
$scope: scope
exchange: {}
scope
Expand Down

0 comments on commit 13237a7

Please sign in to comment.