super-productivity/app-src/scripts/dialogs/notes/notes-c.spec.js

23 lines
500 B
JavaScript

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