featuretracker/dashboard-project-app/client/app/projectDetail/tests/projectDetail.controller.sp...

22 lines
523 B
JavaScript
Executable File

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