forked from angular/protractor
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frameworks): Support
runner.afterEach
in jasmine and mocha ada…
…pter Closes angular#3894, angular#3908, and angular#3909
- Loading branch information
Showing
5 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
lib/frameworks/__protractor_internal_afterEach_setup_spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// This is spec file is automatically added by protractor to implement our | ||
// `afterEach` functionality for jasmine and mocha. | ||
|
||
var hooks = require('./setupAfterEach').hooks; | ||
|
||
afterEach(function() { | ||
if (hooks.afterEach) { | ||
return hooks.afterEach(); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* Setup afterEach hook for jasmine/mocha tests. | ||
* | ||
* One of the main purposes of this file is to give `__protractor_internal_afterEach_setup_spec.js` | ||
* a place to look up `runner.afterEach` at runtime without using globals. | ||
* This file needs to be separate from `__protractor_internal_afterEach_setup_spec.js` so that that | ||
* file is not prematurely executed. | ||
*/ | ||
|
||
var path = require('path'); | ||
|
||
// Queried by `protractor_internal_afterEach_setup_spec.js` for the `afterEach` hook | ||
var hooks = { | ||
afterEach: null | ||
}; | ||
|
||
exports.hooks = hooks; | ||
|
||
/** | ||
* Setup `runner.afterEach` to be called after every spec. | ||
* | ||
* @param {Runner} runner The current Protractor Runner. | ||
* @param {Array} specs Array of Directory Path Strings. Must be a reference to the same array | ||
* instance used by the framework | ||
*/ | ||
exports.setup = function(runner, specs) { | ||
hooks.afterEach = runner.afterEach.bind(runner); | ||
specs.push(path.resolve(__dirname, '__protractor_internal_afterEach_setup_spec.js')); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters