package.test.activitychart.activity-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('Activity chart model', function() {
it('Should show an empty Gantt', function() {
const memModel = createActivityData({ generateActivities: { activityCounts: [30, 3, 2] } });
return this.createGantt({ data: memModel, type: Gantt.type.ACTIVITY_CHART }).then(function(gantt) {});
});
});