Skip to content

Commit

Permalink
[[FEAT]] Add new Jasmine 2.1 globals to "jasmine" option
Browse files Browse the repository at this point in the history
Adds the following global variables exposed by Jasmine 2.1
to the "jasmine" environment option:
  beforeAll
  afterAll
  fail
  fdescribe
  fit

Closes #2023
  • Loading branch information
hpshelton committed Jan 3, 2015
1 parent 825ce01 commit 343c45e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -695,5 +695,11 @@ exports.jasmine = {
// Jasmine 1.3
runs : false,
waitsFor : false,
waits : false
waits : false,
// Jasmine 2.1
beforeAll : false,
afterAll : false,
fail : false,
fdescribe : false,
fit : false
};

0 comments on commit 343c45e

Please sign in to comment.