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
exec (which is how you're doing mkdir) is async -- and you're test assumes loadbuilder is completely sync. You should either give loadbuilder a callback, or write mkdir -p to be sync.
However, small question -- why write loadbuilder sync? You could avoid some try catches and other ugliness if you did it async.
Because of the mkdir.
The text was updated successfully, but these errors were encountered: