Files
gocryptotrader/web/app/views/wallets/wallets_test.js
Scott 244cdcb48c Adds new function to interface to retrieve all enabled currency data from exchange
Implements on alphapointhttp.go
Adds new page to UI to handle exchange balances
2016-09-05 21:57:23 +10:00

16 lines
319 B
JavaScript

'use strict';
describe('myApp.view1 module', function() {
beforeEach(module('myApp.view1'));
describe('view1 controller', function(){
it('should ....', inject(function($controller) {
//spec body
var view1Ctrl = $controller('View1Ctrl');
expect(view1Ctrl).toBeDefined();
}));
});
});