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

Side by Side Diff: Tools/GardeningServer/ui/test/ct-commit-list-tests.html

Issue 498523002: [Sheriff-o-matic] Use likely_revisions instead of first_failing/last_passing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + no sort Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <link rel="import" href="../ct-commit-list.html"> 7 <link rel="import" href="../ct-commit-list.html">
8 8
9 <link rel="import" href="../../model/ct-commit-list-mock.html"> 9 <link rel="import" href="../../model/ct-commit-list-mock.html">
10 10
(...skipping 21 matching lines...) Expand all
32 assert.lengthOf(commits, 0); 32 assert.lengthOf(commits, 0);
33 }); 33 });
34 34
35 describe('expanded test', function() { 35 describe('expanded test', function() {
36 beforeEach(function(done) { 36 beforeEach(function(done) {
37 list.commitList.repositories.first().expanded = true; 37 list.commitList.repositories.first().expanded = true;
38 setTimeout(done); 38 setTimeout(done);
39 }); 39 });
40 40
41 it('should show commit when expanded', function() { 41 it('should show commit when expanded', function() {
42 assert.lengthOf(list.shadowRoot.querySelectorAll('ct-commit'), 1); 42 assert.lengthOf(list.shadowRoot.querySelectorAll('ct-commit'), 2);
43 }); 43 });
44 }); 44 });
45 }); 45 });
46 }); 46 });
47 47
48 })() 48 })()
49 </script> 49 </script>
OLDNEW
« no previous file with comments | « Tools/GardeningServer/ui/ct-unexpected-failures.html ('k') | Tools/GardeningServer/ui/test/ct-failure-analyzer-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698