You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
onTest: (props) ->
console.log("BStore action test")
...
class AActions
...
class BActions
...
`
When I try to call AActions.test() , it just prints the message "AStore action test" without waiting BStore actions called. How can I force AActions.test() to wait for BActions.test() is excuted completely?
The text was updated successfully, but these errors were encountered:
I have the following CoffeeScript code snippet
`
class AStore
@DisplayName: 'AStore'
onTest: (props) ->
@waitfor(Myapp.BStore.dispatchToken)
console.log("AStore action test")
...
class BStore
@DisplayName: 'BStore'
onTest: (props) ->
console.log("BStore action test")
...
class AActions
...
class BActions
...
`
When I try to call AActions.test() , it just prints the message "AStore action test" without waiting BStore actions called. How can I force AActions.test() to wait for BActions.test() is excuted completely?
The text was updated successfully, but these errors were encountered: