ohif-viewer/legacy/Packages/active-entry/components/entrySignUp/.tests/actions/resetEntry.js
2018-12-12 09:10:39 +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;
};