| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview Test suite for the Material Design history page. | 6 * @fileoverview Test suite for the Material Design history page. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 var ROOT_PATH = '../../../../../'; | 9 var ROOT_PATH = '../../../../../'; |
| 10 | 10 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 function MaterialHistoryListTest() {} | 117 function MaterialHistoryListTest() {} |
| 118 | 118 |
| 119 MaterialHistoryListTest.prototype = { | 119 MaterialHistoryListTest.prototype = { |
| 120 __proto__: MaterialHistoryBrowserTest.prototype, | 120 __proto__: MaterialHistoryBrowserTest.prototype, |
| 121 | 121 |
| 122 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ | 122 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ |
| 123 'history_list_test.js', | 123 'history_list_test.js', |
| 124 ]), | 124 ]), |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 // Test is very flaky on all platforms, http://crbug.com/669227 | 127 TEST_F('MaterialHistoryListTest', 'All', function() { |
| 128 TEST_F('MaterialHistoryListTest', 'DISABLED_All', function() { | |
| 129 mocha.run(); | 128 mocha.run(); |
| 130 }); | 129 }); |
| 131 | 130 |
| 132 function MaterialHistoryMetricsTest() {} | 131 function MaterialHistoryMetricsTest() {} |
| 133 | 132 |
| 134 MaterialHistoryMetricsTest.prototype = { | 133 MaterialHistoryMetricsTest.prototype = { |
| 135 __proto__: MaterialHistoryBrowserTest.prototype, | 134 __proto__: MaterialHistoryBrowserTest.prototype, |
| 136 | 135 |
| 137 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ | 136 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ |
| 138 'history_metrics_test.js', | 137 'history_metrics_test.js', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 251 |
| 253 TEST_F('MaterialHistoryToolbarTest', 'Basic', function() { | 252 TEST_F('MaterialHistoryToolbarTest', 'Basic', function() { |
| 254 md_history.history_toolbar_test.registerTests(); | 253 md_history.history_toolbar_test.registerTests(); |
| 255 mocha.run(); | 254 mocha.run(); |
| 256 }); | 255 }); |
| 257 | 256 |
| 258 TEST_F('MaterialHistoryToolbarTest', 'Focus', function() { | 257 TEST_F('MaterialHistoryToolbarTest', 'Focus', function() { |
| 259 md_history.history_toolbar_focus_test.registerTests(); | 258 md_history.history_toolbar_focus_test.registerTests(); |
| 260 mocha.run(); | 259 mocha.run(); |
| 261 }); | 260 }); |
| OLD | NEW |