mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
32 lines
724 B
JavaScript
32 lines
724 B
JavaScript
/** No-op base class for Jasmine reporters.
|
|
*
|
|
* @constructor
|
|
*/
|
|
jasmine.Reporter = function() {
|
|
};
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
jasmine.Reporter.prototype.reportRunnerStarting = function(runner) {
|
|
};
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
jasmine.Reporter.prototype.reportRunnerResults = function(runner) {
|
|
};
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
jasmine.Reporter.prototype.reportSuiteResults = function(suite) {
|
|
};
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
jasmine.Reporter.prototype.reportSpecStarting = function(spec) {
|
|
};
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
jasmine.Reporter.prototype.reportSpecResults = function(spec) {
|
|
};
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
jasmine.Reporter.prototype.log = function(str) {
|
|
};
|
|
|