OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/mocha/tests/controllers/timelines_controller_test.js

25 lines
520 B

/*jshint expr: true*/
var gon = { timeline_options: { } };
describe('TimelinesController', function() {
beforeEach(module('openproject.timelines.controllers'));
it('should exist', function() {
inject(function($rootScope, $controller) {
var scope = $rootScope.$new();
ctrl = $controller("TimelinesController", {
$scope: scope,
Timeline: {}
});
//expect(scope.timelineOptions).to.equal({});
expect(scope.timelineContainerCount).to.equal(0);
});
});
});