Skip to content

Instantly share code, notes, and snippets.

@marcok
marcok / Core_loadDataSpec.js
Created November 20, 2012 13:40
bugfix: loadData should remove empty row if source data has more empt… …y rows than allowed by minSpareRows (issue #239)
describe('Core_loadData', function () {
var id = 'testContainer';
beforeEach(function () {
this.$container = $('<div id="' + id + '"></div>').appendTo('body');
});
afterEach(function () {
if (this.$container) {
this.$container.remove();