UNPKG

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
/*jslint node: true*/ /*globals describe: false, it: false*/ 'use strict'; // // 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); }); }); }); }); }); });