| 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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 /** @override */ | 475 /** @override */ |
| 476 browsePreload: 'chrome://md-settings/settings_ui/settings_ui.html', | 476 browsePreload: 'chrome://md-settings/settings_ui/settings_ui.html', |
| 477 | 477 |
| 478 /** @override */ | 478 /** @override */ |
| 479 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 479 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 480 'rtl_tests.js', | 480 'rtl_tests.js', |
| 481 ]), | 481 ]), |
| 482 }; | 482 }; |
| 483 | 483 |
| 484 TEST_F('CrSettingsRtlTest', 'DrawerPanelFlips', function() { | 484 TEST_F('CrSettingsRtlTest', 'DrawerPanelFlips', function() { |
| 485 settingsHidePagesByDefaultForTest = true; |
| 485 settings_rtl_tests.registerDrawerPanelTests(); | 486 settings_rtl_tests.registerDrawerPanelTests(); |
| 486 mocha.run(); | 487 mocha.run(); |
| 487 }); | 488 }); |
| 488 | 489 |
| 489 /** | 490 /** |
| 490 * Test fixture for chrome/browser/resources/settings/reset_page/. | 491 * Test fixture for chrome/browser/resources/settings/reset_page/. |
| 491 * @constructor | 492 * @constructor |
| 492 * @extends {CrSettingsBrowserTest} | 493 * @extends {CrSettingsBrowserTest} |
| 493 */ | 494 */ |
| 494 function CrSettingsResetPageTest() {} | 495 function CrSettingsResetPageTest() {} |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1423 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1423 'test_browser_proxy.js', | 1424 'test_browser_proxy.js', |
| 1424 'test_extension_control_browser_proxy.js', | 1425 'test_extension_control_browser_proxy.js', |
| 1425 'extension_controlled_indicator_tests.js', | 1426 'extension_controlled_indicator_tests.js', |
| 1426 ]), | 1427 ]), |
| 1427 }; | 1428 }; |
| 1428 | 1429 |
| 1429 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { | 1430 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
| 1430 mocha.run(); | 1431 mocha.run(); |
| 1431 }); | 1432 }); |
| OLD | NEW |