Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2004)

Unified Diff: Tools/GardeningServer/ui/test/ct-results-panel-tests.html

Issue 484753002: Fix exception when running Sheriff-o-Matic tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/GardeningServer/ui/test/ct-commit-list-tests.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/test/ct-results-panel-tests.html
diff --git a/Tools/GardeningServer/ui/test/ct-results-panel-tests.html b/Tools/GardeningServer/ui/test/ct-results-panel-tests.html
index 4529aec2ba9f8a609b1bbecf24acbc4e49798d2d..0a2dbd5cca83aa1501196c93519adbed6e9a9055 100644
--- a/Tools/GardeningServer/ui/test/ct-results-panel-tests.html
+++ b/Tools/GardeningServer/ui/test/ct-results-panel-tests.html
@@ -97,12 +97,19 @@ describe('ct-results-panel', function() {
beforeEach(function(done) {
panel = document.createElement('ct-results-panel');
+ panel.hidden = true;
+ document.body.appendChild(panel);
+
if (failures)
panel.failures = failures;
setTimeout(done);
});
+ afterEach(function() {
+ document.body.removeChild(panel);
+ });
+
describe('empty', function() {
before(function() {
failures = undefined;
« no previous file with comments | « Tools/GardeningServer/ui/test/ct-commit-list-tests.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698