Merge pull request #479 from shprink/fix_jasmine_html

force query selector to seek within the html-reporter element
This commit is contained in:
Davis W. Frank
2013-12-19 09:42:15 -08:00

View File

@@ -230,7 +230,7 @@ jasmineRequire.HtmlReporter = function(j$) {
return this;
function find(selector) {
return getContainer().querySelector(selector);
return getContainer().querySelector('.html-reporter ' + selector);
}
function createDom(type, attrs, childrenVarArgs) {