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
One more question. Is there any best practice for testing flows. I stubbed all my jobs perform method and run
Resque.inline = true
process = MyProcess.create_process
process.enqueue!
but I see that there is a 3 seconds delay between the execution of the jobs. So the test takes a very long time.
One more problem I faced is that I can't stub tasks. I would like to be able to stub this task to check that flow calls it and then write a separate test for each of the jobs. As I can see in the source code that taskinator includes my flow into instances of Taskinator::Executor.
One more question. Is there any best practice for testing flows. I stubbed all my jobs
perform
method and runbut I see that there is a 3 seconds delay between the execution of the jobs. So the test takes a very long time.
One more problem I faced is that I can't stub tasks. I would like to be able to stub this task to check that flow calls it and then write a separate test for each of the jobs. As I can see in the source code that taskinator includes my flow into instances of
Taskinator::Executor
.Thanks
Originally posted by @bguban in #6 (comment)
The text was updated successfully, but these errors were encountered: