Index: Tools/GardeningServer/ui/ct-test-list.html |
diff --git a/Tools/GardeningServer/ui/ct-test-list.html b/Tools/GardeningServer/ui/ct-test-list.html |
index 73f970a3e36925af648e2b63637296055c275738..1f87d99d1063d18b19b7da24d296c651471e9345 100644 |
--- a/Tools/GardeningServer/ui/ct-test-list.html |
+++ b/Tools/GardeningServer/ui/ct-test-list.html |
@@ -11,14 +11,15 @@ found in the LICENSE file. |
display: block; |
} |
</style> |
- <template repeat="{{testName in tests}}"> |
- <div><a href="{{testName|flakinessDashboardURL}}">{{testName}}</a></div> |
+ <template repeat="{{ test in tests }}"> |
+ <!-- FIXME: Find a less redundant UI than repeating the step on each line. --> |
+ <div>{{ test.step }} <a href="{{ test | flakinessDashboardURL }}">{{ test.testName }}</a></div> |
</template> |
</template> |
<script> |
Polymer({ |
- flakinessDashboardURL: function(testName) { |
- return ui.urlForFlakinessDashboard([testName]); |
+ flakinessDashboardURL: function(test) { |
+ return ui.urlForFlakinessDashboard(test.testName, test.step); |
szager1
2014/07/25 23:53:17
The 'Examine' button seems to be busted for webkit
|
}, |
}); |
</script> |