| 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 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 'test_privacy_page_browser_proxy.js', | 945 'test_privacy_page_browser_proxy.js', |
| 946 'metrics_reporting_tests.js', | 946 'metrics_reporting_tests.js', |
| 947 ]), | 947 ]), |
| 948 }; | 948 }; |
| 949 | 949 |
| 950 TEST_F('CrSettingsMetricsReportingTest', 'All', function() { | 950 TEST_F('CrSettingsMetricsReportingTest', 'All', function() { |
| 951 mocha.run(); | 951 mocha.run(); |
| 952 }); | 952 }); |
| 953 | 953 |
| 954 GEN('#endif'); | 954 GEN('#endif'); |
| 955 |
| 956 function CrSettingsActionMenuTest() {} |
| 957 |
| 958 CrSettingsActionMenuTest.prototype = { |
| 959 __proto__: CrSettingsBrowserTest.prototype, |
| 960 |
| 961 /** @override */ |
| 962 browsePreload: 'chrome://md-settings/settings_action_menu.html', |
| 963 |
| 964 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 965 'settings_action_menu_test.js', |
| 966 ]), |
| 967 }; |
| 968 |
| 969 TEST_F('CrSettingsActionMenuTest', 'All', function() { |
| 970 mocha.run(); |
| 971 }); |
| OLD | NEW |