Poop Sheet

Jasmine Core 3.5 Release Notes

Summary

This is a maintenance release of Jasmine with a number of new features and fixes

Highlights

This breaks each call out onto its own line, so that it’s much easier to see where each call starts and how they differ. E.g. previously the output would be:

Expected spy foo to have been called with [ 'bar', 'baz', 'qux' ] but actual calls were [ [ 42, 'wibble' ], [ 'bar' 'qux' ], [ 'grault '] ]

Now it’s:

Expected spy foo to have been called with:
  [ 'bar', 'baz', 'qux' ]
but actual calls were:
  [ 42, 'wibble' ],
  [ 'bar' 'qux' ],
  [ 'grault '].

Internal notes

All Changes


_Release Notes generated with Anchorman