Files
gocryptotrader/web/app/views/settings/settings_test.js
GloriousCode df295a122c Removes "/web" folder requirement when running app.
[WIP]Adds config route to modify settings within app.
2016-07-27 19:09:08 +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();
}));
});
});