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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 function MaterialHistoryToolbarTest() {} | 241 function MaterialHistoryToolbarTest() {} |
242 | 242 |
243 MaterialHistoryToolbarTest.prototype = { | 243 MaterialHistoryToolbarTest.prototype = { |
244 __proto__: MaterialHistoryBrowserTest.prototype, | 244 __proto__: MaterialHistoryBrowserTest.prototype, |
245 | 245 |
246 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ | 246 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ |
247 'history_toolbar_test.js', | 247 'history_toolbar_test.js', |
248 ]), | 248 ]), |
249 }; | 249 }; |
250 | 250 |
251 TEST_F('MaterialHistoryToolbarTest', 'Basic', function() { | 251 TEST_F('MaterialHistoryToolbarTest', 'All', function() { |
252 md_history.history_toolbar_test.registerTests(); | 252 md_history.history_toolbar_test.registerTests(); |
253 mocha.run(); | 253 mocha.run(); |
254 }); | 254 }); |
255 | |
256 TEST_F('MaterialHistoryToolbarTest', 'Focus', function() { | |
257 md_history.history_toolbar_focus_test.registerTests(); | |
258 mocha.run(); | |
259 }); | |
OLD | NEW |