for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
var chai = require('chai');
var config = require('../src/cli').config
config.set({root: __dirname + '/fixtures'})
path
var Manager = require('../src/cli').Manager;
var Plugins = require('../src/cli').Plugins;
var abeProcess = require('../src/cli/helpers/abe-process').default
describe('Process', function() {
before( function(done) {
Manager.instance.init()
.then(function () {
this.fixture = {}
done()
}.bind(this))
});
/**
* getRoutes
*
*/
it('getProcess()', function() {
var file = Plugins.instance.getProcess('test')
chai.expect(file).to.not.be.null;
chai.expect(file).to.not.be.null
* Hooks.instance.trigger
it('abeProcess', function() {
var res = abeProcess('test', [])
res
// chai.assert.equal(res, 'test', 'Hook test failed !')