Do JS deferred promises block action sequence progression in v2?

I just implemented a snippet in the pattern I did in v1 where I use a deferred promise to hold the action sequence until it is returned.  However, in v2 that doesn’t seem to be working.  Is this supposed to be / going to be supported in v2?

Thanks!

I assumed it would be supported.

What is your technique for holding the action sequence with deferred promises? I wasn’t aware this was something that could be done and have been moving more things into javascript / other action sequences to compensate whenever I need to run anything asynchronous inside of javascript in an action sequence.

This is standard practice when using a snippet that does any sort of server call.

https://community.skuid.com/t/save-model-javascript-callback-function

I see so the snippet is in essence a function and you just return the promise to the rest of the action sequence. Good to know.