I am writing acceptance test for which I get the following error Uncaught Error: Assertion Failed: You have turned on testing mode, which disabled the run-loop's autorun. You will need to wrap any code with asynchronous side-effects in a run
This error is caused when I use an Ember add on component (maintained by other teams). As I understand this error is caused due to not wrapping any asynchronous code in run loops, I tried to wrap all my code in runloops but nothing works.
As I do not have control over the external addon, is there a way to overcome this by changing something in my code or test setup?
I cannot post the code here but my test is as simple as
visit('/someurl')
andthen(()=>{
//assert something
})
You have to use
run
here:Here's a good article about the Ember-run loop