super-productivity/app-src/scripts/dialogs/simple-task-summary/simple-task-summary-c.spec.js

23 lines
548 B
JavaScript

'use strict';
describe('Controller: SimpleTaskSummaryCtrl', function () {
// load the controller's module
beforeEach(module('superProductivity'));
var SimpleTaskSummaryCtrl;
var scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
SimpleTaskSummaryCtrl = $controller('SimpleTaskSummaryCtrl', {
$scope: scope
// place mocked dependencies here
});
}));
it('should ...', function () {
expect(true).toBe(true);
});
});