UNPKG

biojs-vis-inchlib

Version:
34 lines (26 loc) 851 B
// /* // * 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; // // register alternative styles // // @see http://chaijs.com/api/bdd/ // chai.expect(); // chai.should(); // // requires your main app (specified in index.js) // var InCHlib = require('../..'); // describe('biojs-vis-inchlib module', function(){ // describe('#hello()', function(){ // it('should return a hello', function(){ // assert.equal(biojsvisinchlib.hello('biojs'), ("hello biojs")); // // alternative styles // biojsvisinchlib.hello('biojs').should.equal("hello biojs"); // }); // }); // });