If the only expectation in a testcase is expectObservable(actual$).toBe('a', { a: 0 }); then currently the 'Spec '...' has no expectations.' warning is shown.
When actual is an array and passed is true currently no expectations are called. The expectations are currently only called if actual and expected values are not equal.
Fixed by adding an expectation for when actual is an array and passed is true.
Fixes https://github.com/synapse-wireless-labs/jasmine-marbles/issues/59
If the only expectation in a testcase is
expectObservable(actual$).toBe('a', { a: 0 });
then currently the 'Spec '...' has no expectations.' warning is shown.When actual is an array and passed is true currently no expectations are called. The expectations are currently only called if actual and expected values are not equal.
Fixed by adding an expectation for when actual is an array and passed is true.