| 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 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1073 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1074 'date_time_page_tests.js', | 1074 'date_time_page_tests.js', |
| 1075 ]), | 1075 ]), |
| 1076 }; | 1076 }; |
| 1077 | 1077 |
| 1078 TEST_F('CrSettingsDateTimePageTest', 'DateTimePageTest', function() { | 1078 TEST_F('CrSettingsDateTimePageTest', 'DateTimePageTest', function() { |
| 1079 mocha.run(); | 1079 mocha.run(); |
| 1080 }); | 1080 }); |
| 1081 | 1081 |
| 1082 GEN('#endif'); | 1082 GEN('#endif'); |
| 1083 |
| 1084 /** |
| 1085 * @constructor |
| 1086 * @extends {CrSettingsBrowserTest} |
| 1087 */ |
| 1088 function CrSettingsExtensionControlledIndicatorTest() {} |
| 1089 |
| 1090 CrSettingsExtensionControlledIndicatorTest.prototype = { |
| 1091 __proto__: CrSettingsBrowserTest.prototype, |
| 1092 |
| 1093 /** @override */ |
| 1094 browsePreload: |
| 1095 'chrome://md-settings/controls/extension_controlled_indicator.html', |
| 1096 |
| 1097 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1098 'test_browser_proxy.js', |
| 1099 'extension_controlled_indicator_tests.js', |
| 1100 ]), |
| 1101 }; |
| 1102 |
| 1103 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
| 1104 mocha.run(); |
| 1105 }); |
| OLD | NEW |