featuretracker/dashboard-project-app/client/app/projectList/tests/projectList.controller.spec.js

22 lines
492 B
JavaScript
Executable File

'use strict';
describe('Component: ProjectListComponent', function () {
// load the controller's module
beforeEach(module('dashboardProjectApp'));
var ProjectListComponent, scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($componentController, $rootScope) {
scope = $rootScope.$new();
$componentController('ProjectListComponent', {
$scope: scope
});
}));
it('should ...', function () {
expect(1).to.equal(1);
});
});