Only brightness module (#161)

* fixed package.json

Signed-off-by: tech4GT <varun.gupta1798@gmail.com>

* resolves #113 add brightness module

Signed-off-by: tech4GT <varun.gupta1798@gmail.com>
This commit is contained in:
Varun Gupta
2018-02-01 22:57:37 +05:30
committed by Jeffrey Warren
parent a5d5dd9f52
commit 87fa166595
6 changed files with 169 additions and 25 deletions

View File

@@ -42,7 +42,7 @@ test('loadImages loads a DataURL image and creates a step.', function (t){
test('modulesInfo() returns info for each module', function (t){
var info = sequencer.modulesInfo();
t.equal(Object.keys(info).length, 8);
t.equal(Object.keys(info).length, 9);
t.equal(Object.keys(info).length, Object.keys(sequencer.modules).length);
t.equal(info.hasOwnProperty(Object.keys(sequencer.modules)[0]), true);
t.equal(info[Object.keys(sequencer.modules)[0]].hasOwnProperty('name'), true);