UNPKG

178 BJavaScriptView Raw
1const aofljs = require('../bin/aofljs-cli');
2const should = require('should');
3
4describe('demo:', ()=> {
5 it('first', (done)=> {
6 should.exist(aofljs);
7 done();
8 });
9});