Add a first pass at jsdoc.

[##130415655] #596
This commit is contained in:
Gregg Van Hove
2017-03-21 11:36:41 -07:00
parent a37b6c0d32
commit 9cb2f06aa6
30 changed files with 553 additions and 9 deletions

View File

@@ -1,4 +1,10 @@
getJasmineRequireObj().Env = function(j$) {
/**
* _Note:_ Do not construct this directly, Jasmine will make one during booting.
* @name Env
* @classdesc The Jasmine environment
* @constructor
*/
function Env(options) {
options = options || {};
@@ -266,6 +272,11 @@ getJasmineRequireObj().Env = function(j$) {
});
};
/**
* @name Env#addReporter
* @function
* @tutorial addReporter
*/
this.addReporter = function(reporterToAdd) {
reporter.addReporter(reporterToAdd);
};