| 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_F('MaterialHistoryListTest', 'All', function() { | 127 // Test is very flaky on all platforms, http://crbug.com/669227 |
| 128 TEST_F('MaterialHistoryListTest', 'DISABLED_All', function() { |
| 128 mocha.run(); | 129 mocha.run(); |
| 129 }); | 130 }); |
| 130 | 131 |
| 131 function MaterialHistoryMetricsTest() {} | 132 function MaterialHistoryMetricsTest() {} |
| 132 | 133 |
| 133 MaterialHistoryMetricsTest.prototype = { | 134 MaterialHistoryMetricsTest.prototype = { |
| 134 __proto__: MaterialHistoryBrowserTest.prototype, | 135 __proto__: MaterialHistoryBrowserTest.prototype, |
| 135 | 136 |
| 136 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ | 137 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ |
| 137 'history_metrics_test.js', | 138 'history_metrics_test.js', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 252 |
| 252 TEST_F('MaterialHistoryToolbarTest', 'Basic', function() { | 253 TEST_F('MaterialHistoryToolbarTest', 'Basic', function() { |
| 253 md_history.history_toolbar_test.registerTests(); | 254 md_history.history_toolbar_test.registerTests(); |
| 254 mocha.run(); | 255 mocha.run(); |
| 255 }); | 256 }); |
| 256 | 257 |
| 257 TEST_F('MaterialHistoryToolbarTest', 'Focus', function() { | 258 TEST_F('MaterialHistoryToolbarTest', 'Focus', function() { |
| 258 md_history.history_toolbar_focus_test.registerTests(); | 259 md_history.history_toolbar_focus_test.registerTests(); |
| 259 mocha.run(); | 260 mocha.run(); |
| 260 }); | 261 }); |
| OLD | NEW |