| 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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ | 549 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| 550 'fake_language_settings_private.js', | 550 'fake_language_settings_private.js', |
| 551 'fake_settings_private.js', | 551 'fake_settings_private.js', |
| 552 'languages_page_tests.js', | 552 'languages_page_tests.js', |
| 553 ]), | 553 ]), |
| 554 }; | 554 }; |
| 555 | 555 |
| 556 TEST_F('CrSettingsLanguagesPageTest', 'LanguagesPage', function() { | 556 TEST_F('CrSettingsLanguagesPageTest', 'LanguagesPage', function() { |
| 557 mocha.run(); | 557 mocha.run(); |
| 558 }); | 558 }); |
| 559 |
| 560 function CrSettingsRadioGroupTest() {} |
| 561 |
| 562 CrSettingsRadioGroupTest.prototype = { |
| 563 __proto__: CrSettingsBrowserTest.prototype, |
| 564 |
| 565 /** @override */ |
| 566 browsePreload: 'chrome://md-settings/controls/settings_radio_group.html', |
| 567 |
| 568 /** @override */ |
| 569 extraLibraries: PolymerTest.getLibraries(ROOT_PATH).concat([ |
| 570 'radio_group_tests.js', |
| 571 ]), |
| 572 }; |
| 573 |
| 574 TEST_F('CrSettingsRadioGroupTest', 'All', function() { |
| 575 mocha.run(); |
| 576 }); |
| OLD | NEW |