| 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 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1412 | 1412 |
| 1413 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1413 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1414 'test_browser_proxy.js', | 1414 'test_browser_proxy.js', |
| 1415 'test_extension_control_browser_proxy.js', | 1415 'test_extension_control_browser_proxy.js', |
| 1416 'extension_controlled_indicator_tests.js', | 1416 'extension_controlled_indicator_tests.js', |
| 1417 ]), | 1417 ]), |
| 1418 }; | 1418 }; |
| 1419 | 1419 |
| 1420 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { | 1420 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
| 1421 mocha.run(); | 1421 mocha.run(); |
| 1422 }); | 1422 }); |
| 1423 | |
| 1424 /** | |
| 1425 * Test fixture for the Date and Time page. | |
| 1426 * @constructor | |
| 1427 * @extends {CrSettingsBrowserTest} | |
| 1428 */ | |
| 1429 function CrSettingsFocusableIronListItemBehavior() {} | |
| 1430 | |
| 1431 CrSettingsFocusableIronListItemBehavior.prototype = { | |
| 1432 __proto__: CrSettingsBrowserTest.prototype, | |
| 1433 | |
| 1434 /** @override */ | |
| 1435 browsePreload: 'chrome://md-settings/focusable_iron_list_item_behavior.html', | |
| 1436 | |
| 1437 /** @override */ | |
| 1438 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | |
| 1439 'focusable_iron_list_item_behavior_test.js', | |
| 1440 ]), | |
| 1441 }; | |
| 1442 | |
| 1443 TEST_F('CrSettingsFocusableIronListItemBehavior', 'FocusTest', function() { | |
| 1444 mocha.run(); | |
| 1445 }); | |
| OLD | NEW |