Skip to content

Update to Jasmine 2.9.1

Evan Welsh requested to merge ewlsh/jasmine291 into master

This is the last release before v3, which has more breaking behavioral changes.

The biggest feature we get is async support like:

beforeEach(async function () {
    await doSomething();
});

and...

it(async function () {
   await aTest();
});

which makes writing dynamic import tests infinitely easier.

This did break one test due to a change in the way Jasmine does call tracking, the fix is included.

Merge request reports