Skip to content

Commit

Permalink
2.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
searls committed Jan 11, 2016
1 parent 4d449f2 commit 00779e1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dist/jasmine-given.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* jasmine-given - 2.6.3
/* jasmine-given - 2.6.4
* Adds a Given-When-Then DSL to jasmine as an alternative style for specs
* https://github.com/searls/jasmine-given
*/
Expand Down Expand Up @@ -142,11 +142,11 @@
mostRecentlyUsed = root.subsequentThen;
mostRecentExpectations = expectations = [expectationFunction];
mostRecentStacks = stacks = [errorWithRemovedLines("failed expectation", 3)];
itFunction("then " + (label != null ? label : stringifyExpectation(expectations)), doneWrapperFor(expectationFunction, function(jasmineDone) {
itFunction("then " + (label != null ? label : stringifyExpectation(expectations)), function(jasmineDone) {
var userCommands;
userCommands = [].concat(whenList, invariantList, wrapAsExpectations(expectations, stacks));
return new Waterfall(userCommands, jasmineDone).flow();
}));
});
return {
Then: subsequentThen,
And: subsequentThen
Expand Down
5 changes: 5 additions & 0 deletions dist/jasmine-given.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jasmine-given",
"version": "2.6.3",
"version": "2.6.4",
"description": "Adds a Given-When-Then DSL to jasmine as an alternative style for specs",
"homepage": "https://github.com/searls/jasmine-given",
"author": {
Expand Down

0 comments on commit 00779e1

Please sign in to comment.