Skip to content

Instantly share code, notes, and snippets.

@santarinto
Created August 19, 2019 07:22
Show Gist options
  • Save santarinto/937aef541283d5bff8b4bf667518d820 to your computer and use it in GitHub Desktop.
Save santarinto/937aef541283d5bff8b4bf667518d820 to your computer and use it in GitHub Desktop.
Jetbrains PhpStorm clear codeception reports tool js
function ReportTool () {}
ReportTool.prototype.removeAllSuccessParts = () => {
const sList = document.getElementById('status_list');
Array.prototype.forEach.call(sList.childNodes, (c) => {
if (c.tagName !== 'LI') return;
if (!c.classList.contains('failed')) sList.removeChild(c);
});
}
window.reportTool = new ReportTool();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment