UNPKG

bio-vis-expression-bar

Version:

Simple barchart to show expression levels across experiments

22 lines (18 loc) 506 B
/* * expression-bar * https://github.com/homonecloco/expression-bar * * Copyright (c) 2014 Ricardo H. Ramirez-Gonzalez * Licensed under the MIT license. */ var chai = require('chai'); chai.expect(); chai.should(); var biovisexpressionbar = require('../lib/biovisexpressionbar.js'); describe('expression-bar module', function(){ describe('#hello()', function(){ it('should return a hello', function(){ // biovisexpressionbar.hello('biojs').should.equal("hello biojs"); }); }); });