Skip to content

Instantly share code, notes, and snippets.

@calderas
Created January 30, 2015 21:10
Show Gist options
  • Select an option

  • Save calderas/a667e06fee07d1eab28c to your computer and use it in GitHub Desktop.

Select an option

Save calderas/a667e06fee07d1eab28c to your computer and use it in GitHub Desktop.
display qunit time tests on chrome console
var items = {};
$("#qunit-tests > li.pass").each(function(i, el) {
items[i] = {
"time": parseInt($(el).find(".runtime").text().split(" ")[0], 10),
"module": $(el).find(".module-name").text()
};
});
console.table(items);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment