| 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 /** @fileoverview Runs the Polymer Settings tests. */ | 5 /** @fileoverview Runs the Polymer Settings tests. */ |
| 6 | 6 |
| 7 /** @const {string} Path to source root. */ | 7 /** @const {string} Path to source root. */ |
| 8 var ROOT_PATH = '../../../../../'; | 8 var ROOT_PATH = '../../../../../'; |
| 9 | 9 |
| 10 // Polymer BrowserTest fixture. | 10 // Polymer BrowserTest fixture. |
| (...skipping 1405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1416 | 1416 |
| 1417 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1417 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1418 'test_browser_proxy.js', | 1418 'test_browser_proxy.js', |
| 1419 'test_extension_control_browser_proxy.js', | 1419 'test_extension_control_browser_proxy.js', |
| 1420 'extension_controlled_indicator_tests.js', | 1420 'extension_controlled_indicator_tests.js', |
| 1421 ]), | 1421 ]), |
| 1422 }; | 1422 }; |
| 1423 | 1423 |
| 1424 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { | 1424 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
| 1425 mocha.run(); | 1425 mocha.run(); |
| 1426 }); | 1426 }); |
| 1427 | |
| 1428 /** | |
| 1429 * Test fixture for the Date and Time page. | |
| 1430 * @constructor | |
| 1431 * @extends {CrSettingsBrowserTest} | |
| 1432 */ | |
| 1433 function CrSettingsFocusableIronListItemBehavior() {} | |
| 1434 | |
| 1435 CrSettingsFocusableIronListItemBehavior.prototype = { | |
| 1436 __proto__: CrSettingsBrowserTest.prototype, | |
| 1437 | |
| 1438 /** @override */ | |
| 1439 browsePreload: 'chrome://md-settings/focusable_iron_list_item_behavior.html', | |
| 1440 | |
| 1441 /** @override */ | |
| 1442 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | |
| 1443 'focusable_iron_list_item_behavior_test.js', | |
| 1444 ]), | |
| 1445 }; | |
| 1446 | |
| 1447 TEST_F('CrSettingsFocusableIronListItemBehavior', 'FocusTest', function() { | |
| 1448 mocha.run(); | |
| 1449 }); | |
| OLD | NEW |