Module info.json -based demo UI (WIP) (#219)

* initial work

* working with failing test

* now should pass test
This commit is contained in:
Jeffrey Warren
2018-04-20 09:34:08 -04:00
committed by GitHub
parent d887f5eb61
commit c2756ffdbb
5 changed files with 10 additions and 4 deletions

View File

@@ -85,6 +85,7 @@ test('addSteps("image","name") adds a step', function (t) {
sequencer.addSteps('test','green-channel');
t.equal(sequencer.images.test.steps.length, 2, "Length of steps increased")
t.equal(sequencer.images.test.steps[1].options.name, "green-channel", "Correct Step Added");
t.equal(sequencer.images.test.steps[1].options.description, "Displays only the green channel of an image", "Step description shown");
t.end();
});