Skip to content

Instantly share code, notes, and snippets.

@devxoul
Last active March 31, 2018 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devxoul/3294afca54b75f6fb00151a392f5c28e to your computer and use it in GitHub Desktop.
Save devxoul/3294afca54b75f6fb00151a392f5c28e to your computer and use it in GitHub Desktop.
Filter codecov by filename
$('#tree tbody tr').each((i, tr) => {
const filename = $(tr).find('td:first a').text();
if (!filename.includes('Reactor.swift')) {
$(tr).remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment