Files
meanTorrent/modules/core/tests/client/home.client.controller.tests.js

21 lines
466 B
JavaScript
Raw Normal View History

2014-02-10 13:09:31 +02:00
'use strict';
(function () {
describe('HomeController', function () {
// Initialize global variables
var scope,
HomeController;
2014-02-10 13:09:31 +02:00
// Load the main application module
beforeEach(module(ApplicationConfiguration.applicationModuleName));
2014-02-10 13:09:31 +02:00
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
2014-02-10 13:09:31 +02:00
HomeController = $controller('HomeController as vm', {
$scope: scope
});
}));
});
}());