time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

template.js (261B)


      1 var vows = require('vows');
      2 var assert = require('assert');
      3 var suite = vows.describe('jStat');
      4 
      5 require('../env.js');
      6 
      7 suite.addBatch({
      8   '': {
      9     'topic': function() {
     10       return jStat;
     11     },
     12     '': function(jStat) {
     13     }
     14   }
     15 });
     16 
     17 suite.export(module);