ohif-viewer/Packages/active-entry/components/entrySignUp/.tests/actions/resetEntry.js
2016-01-25 17:14:42 +01:00

12 lines
210 B
JavaScript

// resetEntry.js
exports.command = function () {
this
.timeoutsAsyncScript(5000)
.executeAsync(function (data, meteorCallback) {
ActiveEntry.reset();
}, []).pause(1000);
return this;
};