biojs-vis-inchlib
Version:
Interactive Cluster Heatmap library
30 lines (24 loc) • 838 B
JavaScript
// /*
// * biojs-vis-inchlib
// * https://github.com/skutac/biojs-vis-inchlib
// *
// * Copyright (c) 2014 Ctibor Škuta
// * Licensed under the MIT license.
// */
// // chai is an assertion library
// var chai = require('chai');
// // @see http://chaijs.com/api/assert/
// var assert = chai.assert;
// // this is your global div instance (see index.html)
// var yourDiv = document.getElementById('mocha');
// // requires your main app (specified in index.js)
// var biojsvisinchlib = require('../..');
// describe('biojs-vis-inchlib module', function(){
// describe('#init()', function(){
// it('should fill the textBox', function(){
// var opts = {el: yourDiv, text: 'biojs'};
// var instance = new biojsvisinchlib(opts);
// assert.equal(yourDiv.textContent,"hello biojs");
// });
// });
// });