Chromium Code Reviews| 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 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1197 */ | 1197 */ |
| 1198 function CrSettingsSearchTest() {} | 1198 function CrSettingsSearchTest() {} |
| 1199 | 1199 |
| 1200 CrSettingsSearchTest.prototype = { | 1200 CrSettingsSearchTest.prototype = { |
| 1201 __proto__: CrSettingsBrowserTest.prototype, | 1201 __proto__: CrSettingsBrowserTest.prototype, |
| 1202 | 1202 |
| 1203 /** @override */ | 1203 /** @override */ |
| 1204 browsePreload: 'chrome://md-settings/settings_page/settings_section.html', | 1204 browsePreload: 'chrome://md-settings/settings_page/settings_section.html', |
| 1205 | 1205 |
| 1206 /** @override */ | 1206 /** @override */ |
| 1207 runAccessibilityChecks: false, | |
|
Dan Beam
2017/03/14 00:44:28
i don't think we want this. i think we want to ch
dpapad
2017/03/14 03:28:11
Reverted.
The way we test accessibility is weird.
| |
| 1208 | |
| 1209 /** @override */ | |
| 1207 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1210 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1208 'search_settings_test.js', | 1211 'search_settings_test.js', |
| 1209 ]), | 1212 ]), |
| 1210 }; | 1213 }; |
| 1211 | 1214 |
| 1212 TEST_F('CrSettingsSearchTest', 'All', function() { | 1215 TEST_F('CrSettingsSearchTest', 'All', function() { |
| 1213 mocha.run(); | 1216 mocha.run(); |
| 1214 }); | 1217 }); |
| 1215 | 1218 |
| 1216 /** | 1219 /** |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1404 | 1407 |
| 1405 /** @override */ | 1408 /** @override */ |
| 1406 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 1409 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 1407 'focusable_iron_list_item_behavior_test.js', | 1410 'focusable_iron_list_item_behavior_test.js', |
| 1408 ]), | 1411 ]), |
| 1409 }; | 1412 }; |
| 1410 | 1413 |
| 1411 TEST_F('CrSettingsFocusableIronListItemBehavior', 'FocusTest', function() { | 1414 TEST_F('CrSettingsFocusableIronListItemBehavior', 'FocusTest', function() { |
| 1412 mocha.run(); | 1415 mocha.run(); |
| 1413 }); | 1416 }); |
| OLD | NEW |