Skip to content

Instantly share code, notes, and snippets.

@nonrational
Last active January 10, 2020 18:16
Show Gist options
  • Save nonrational/323ee10adcf9bb38502042062c9ab444 to your computer and use it in GitHub Desktop.
Save nonrational/323ee10adcf9bb38502042062c9ab444 to your computer and use it in GitHub Desktop.
Bookmarklet - Copy Failed Test Files in Circle CI to Clipboard
javascript:!function(a){var b=document.createElement("textarea"),c=document.getSelection();b.textContent=a,document.body.appendChild(b),c.removeAllRanges(),b.select(),document.execCommand("copy"),c.removeAllRanges(),document.body.removeChild(b)}("rspec " + [ ...new Set($('.test-file').map((i,e)=>e.innerHTML)) ].join(' '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment