All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.test.table.table-impl.test.js Maven / Gradle / Ivy

The newest version!
describe('Table implementation', function() {
  describe('Use minimal table implementation', function() {
    before(function() {
      installDummyTable(Gantt);
    });
    after(function() {
      uninstallDummyTable(Gantt);
    });
    it('Simple', function() {
      const memModel = createResourceWidthActivitiesData();
      return this.createGantt({ data: memModel }).then(function(gantt) {
        expect($(gantt.table.getTableBody()).find('tr').length).to.equal(memModel.resources.data.length);
      });
    });
  });
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy