package.test.table.mem-model.test.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ibm-gantt-chart Show documentation
Show all versions of ibm-gantt-chart Show documentation
IBM Gantt Chart Component, integrable in Vanilla, jQuery, or React Framework.
The newest version!
describe('Model test', function() {
describe('Use minimal table implementation', function() {
before(function() {
installDummyTable(Gantt);
});
it('Test resource with activities model', function() {
return this.createGantt({ data: createResourceWidthActivitiesData() }).then(function(gantt) {});
});
it('Test resource and activities model', function() {
return this.createGantt({ data: createResourceActivityData() }).then(function(gantt) {});
});
it('Test resource + activities + reservation model', function() {
return this.createGantt({ data: createResourceActivityReservationData() }).then(function(gantt) {});
});
});
});