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
Have you used Test Double's verifying invocation feature in your Ember tests? Since td.verify() is meant to be an assertion, you end up getting an error like "Expected at least one assertion, but none were run - call expect(0) to accept zero assertions." if you don't call a method off of the provided assert. Just curious if you found any clever ways around this. 🙂
The text was updated successfully, but these errors were encountered:
Hi @skaterdav85 this looks reasonable to me, but perhaps somebody else can chime in. Most of my usage for td has been in ember-cordova/corber where we're not using QUnit.
Hey Alex,
Have you used Test Double's verifying invocation feature in your Ember tests? Since
td.verify()
is meant to be an assertion, you end up getting an error like "Expected at least one assertion, but none were run - call expect(0) to accept zero assertions." if you don't call a method off of the providedassert
. Just curious if you found any clever ways around this. 🙂The text was updated successfully, but these errors were encountered: