JasmineParamedicProxy.prototype.specDone = function()

in paramedic-plugin/JasmineParamedicProxy.js [40:49]


JasmineParamedicProxy.prototype.specDone = function (o) {
    if (o.status !== 'disabled') {
        this.specExecuted++;
    }
    if (o.status === 'failed') {
        this.specFailed++;
    }

    this.socket.emit('specDone', o);
};