Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | var chai = require('chai'); |
||
10 | describe('Process', function() { |
||
11 | before( function(done) { |
||
12 | Manager.instance.init() |
||
13 | .then(function () { |
||
14 | this.fixture = {} |
||
15 | done() |
||
16 | |||
17 | }.bind(this)) |
||
18 | }); |
||
19 | |||
20 | it('abeExtend.plugins.instance.getProcess()', function() { |
||
21 | var file = abeExtend.plugins.instance.getProcess('test') |
||
22 | chai.expect(file).to.not.be.null; |
||
|
|||
23 | }); |
||
24 | |||
25 | it('abeExtend.process', function() { |
||
26 | var res = abeExtend.process('test', []) |
||
27 | // chai.assert.equal(res, 'test', 'Hook test failed !') |
||
28 | }); |
||
29 | }); |
||
30 |