24 lines
511 B
JavaScript
24 lines
511 B
JavaScript
|
/** No-op base class for Jasmine reporters.
|
||
|
*
|
||
|
* @constructor
|
||
|
*/
|
||
|
jasmine.Reporter = function() {
|
||
|
};
|
||
|
|
||
|
//noinspection JSUnusedLocalSymbols
|
||
|
jasmine.Reporter.prototype.reportRunnerResults = function(runner) {
|
||
|
};
|
||
|
|
||
|
//noinspection JSUnusedLocalSymbols
|
||
|
jasmine.Reporter.prototype.reportSuiteResults = function(suite) {
|
||
|
};
|
||
|
|
||
|
//noinspection JSUnusedLocalSymbols
|
||
|
jasmine.Reporter.prototype.reportSpecResults = function(spec) {
|
||
|
};
|
||
|
|
||
|
//noinspection JSUnusedLocalSymbols
|
||
|
jasmine.Reporter.prototype.log = function (str) {
|
||
|
};
|
||
|
|