Last active
January 10, 2020 18:16
-
-
Save nonrational/323ee10adcf9bb38502042062c9ab444 to your computer and use it in GitHub Desktop.
Bookmarklet - Copy Failed Test Files in Circle CI to Clipboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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