| 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 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1229 | 1229 |
| 1230 TEST_F('CrSettingsPrintingPageTest', 'CupsPrintersTest', function() { | 1230 TEST_F('CrSettingsPrintingPageTest', 'CupsPrintersTest', function() { |
| 1231 mocha.run(); | 1231 mocha.run(); |
| 1232 }); | 1232 }); |
| 1233 | 1233 |
| 1234 GEN('#endif'); | 1234 GEN('#endif'); |
| 1235 | 1235 |
| 1236 GEN('#if defined(OS_CHROMEOS)'); | 1236 GEN('#if defined(OS_CHROMEOS)'); |
| 1237 | 1237 |
| 1238 /** | 1238 /** |
| 1239 * Test fixture for the Google Play Store (Arc++) page. | 1239 * Test fixture for the Google Play Store (ARC) page. |
| 1240 * @constructor | 1240 * @constructor |
| 1241 * @extends {CrSettingsBrowserTest} | 1241 * @extends {CrSettingsBrowserTest} |
| 1242 */ | 1242 */ |
| 1243 function CrSettingsAndroidAppsPageTest() {} | 1243 function CrSettingsAndroidAppsPageTest() {} |
| 1244 | 1244 |
| 1245 CrSettingsAndroidAppsPageTest.prototype = { | 1245 CrSettingsAndroidAppsPageTest.prototype = { |
| 1246 __proto__: CrSettingsBrowserTest.prototype, | 1246 __proto__: CrSettingsBrowserTest.prototype, |
| 1247 | 1247 |
| 1248 /** @override */ | 1248 /** @override */ |
| 1249 browsePreload: | 1249 browsePreload: |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1301 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1301 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1302 'test_browser_proxy.js', | 1302 'test_browser_proxy.js', |
| 1303 'test_extension_control_browser_proxy.js', | 1303 'test_extension_control_browser_proxy.js', |
| 1304 'extension_controlled_indicator_tests.js', | 1304 'extension_controlled_indicator_tests.js', |
| 1305 ]), | 1305 ]), |
| 1306 }; | 1306 }; |
| 1307 | 1307 |
| 1308 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { | 1308 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
| 1309 mocha.run(); | 1309 mocha.run(); |
| 1310 }); | 1310 }); |
| OLD | NEW |