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
problem: we have an acceptance test that passes when running ember t. but when running ember t --environment=production, the test fails. it fails because clicking on the trigger does not display any options.
expectation: the test should pass regardless of the environment flag
workaround: add <div id="ember-basic-dropdown-wormhole"></div> to tests/index.html this is a variation of the solution mentioned in #1200 for a similar issue. that solution (adding that same div to application.hbs) also works.
problem: we have an acceptance test that passes when running
ember t
. but when runningember t --environment=production
, the test fails. it fails because clicking on the trigger does not display any options.expectation: the test should pass regardless of the environment flag
workaround: add
<div id="ember-basic-dropdown-wormhole"></div>
totests/index.html
this is a variation of the solution mentioned in #1200 for a similar issue. that solution (adding that same div toapplication.hbs
) also works.The text was updated successfully, but these errors were encountered: