You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.
Is there a way or an update so we can disable logging with allure in case we user CLI reporter with it ?
There are in the index.js :
if(bodyModeProp === "raw") { // bodyModePropObj = this.escape(rItem.pm_item.request_data.body[bodyModeProp]); bodyModePropObj = rItem.pm_item.request_data.body[bodyModeProp]; --here--console.log(bodyModePropObj); }
start(err, args) { const suiteName = this.options.collection.name; --here--console.log( ####Starting Execution For - ${suiteName} ); const scope = this.currentSuite || this.allure_runtime; const suite = scope.startGroup(suiteName || "Global"); this.pushSuite(suite); this.runningItems = []; }
done(err, args) { if (this.currentSuite !== null) { // if (this.currentStep !== null) { // this.currentStep.endStep(); // } this.currentSuite.endGroup(); this.popSuite(); } //console.log(#### Finished Execution ####); }
The text was updated successfully, but these errors were encountered: