canvas-datagrid
Version:
Canvas based data grid web component. Capable of displaying millions of contiguous hierarchical rows and columns without paging or loading, on a single canvas element.
18 lines • 648 B
JavaScript
/*jslint node: true*/
/*globals describe: false, it: false*/
;
// // page.property('content')
var phantom = require('phantom');
describe('canvas-datagrid', function () {
it('Application should startup after database connection.', function (done) {
phantom.create().then(function (ph) {
ph.createPage().then(function (page) {
page.open('file://' + __dirname + '/tests.html').then(function () {
page.property('onConsoleMessage', function () {
console.log(arguments);
});
});
});
});
});
});