tests: added method to isCallAsync

This commit is contained in:
Gabriel Grubba
2023-03-07 15:18:57 -03:00
parent f2253fe619
commit 9eff767689

View File

@@ -378,3 +378,9 @@ Meteor.methods({
resultByValueArrays[testId].push(value);
}
});
/// Helper for "livedata - isAsync call"
Meteor.methods({
isCallAsync: function () {
return Meteor.isAsyncCall()
}
})