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; | |
486 settings_rtl_tests.registerDrawerPanelTests(); | 485 settings_rtl_tests.registerDrawerPanelTests(); |
487 mocha.run(); | 486 mocha.run(); |
488 }); | 487 }); |
489 | 488 |
490 /** | 489 /** |
491 * Test fixture for chrome/browser/resources/settings/reset_page/. | 490 * Test fixture for chrome/browser/resources/settings/reset_page/. |
492 * @constructor | 491 * @constructor |
493 * @extends {CrSettingsBrowserTest} | 492 * @extends {CrSettingsBrowserTest} |
494 */ | 493 */ |
495 function CrSettingsResetPageTest() {} | 494 function CrSettingsResetPageTest() {} |
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1423 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1422 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
1424 'test_browser_proxy.js', | 1423 'test_browser_proxy.js', |
1425 'test_extension_control_browser_proxy.js', | 1424 'test_extension_control_browser_proxy.js', |
1426 'extension_controlled_indicator_tests.js', | 1425 'extension_controlled_indicator_tests.js', |
1427 ]), | 1426 ]), |
1428 }; | 1427 }; |
1429 | 1428 |
1430 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { | 1429 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
1431 mocha.run(); | 1430 mocha.run(); |
1432 }); | 1431 }); |
OLD | NEW |