Skip to content

Instantly share code, notes, and snippets.

@alexbeletsky
Created January 26, 2018 10:19
Show Gist options
  • Save alexbeletsky/402501d4944d81b3d910d3eadd59d525 to your computer and use it in GitHub Desktop.
Save alexbeletsky/402501d4944d81b3d910d3eadd59d525 to your computer and use it in GitHub Desktop.
export const makeTestTitle = test => {
let next = test;
const title = [];
for (;;) {
if (!next.parent) {
break;
}
title.push(next.title);
next = next.parent;
}
return title.reverse().join(' ');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment