Add tests for notify() (#686)

* Added HTML-UI test

* Added test for notify()

* Updated Readme's
This commit is contained in:
Slytherin
2019-01-22 20:13:39 +05:30
committed by Jeffrey Warren
parent 413a235594
commit 8fd4efc621
5 changed files with 50 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
// See documetation for more details.
function DefaultHtmlStepUi(_sequencer, options) {
options = options || {};
var stepsEl = options.stepsEl || document.querySelector("#steps");
var selectStepSel = options.selectStepSel = options.selectStepSel || "#selectStep";
@@ -295,3 +295,9 @@ function DefaultHtmlStepUi(_sequencer, options) {
notify: notify
}
}
if(typeof window === "undefined"){
module.exports={
DefaultHtmlStepUi: DefaultHtmlStepUi
}
}