Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: chrome/test/data/webui/settings/cr_settings_browsertest.js

Issue 2509543002: MD Settings: create a shared handler/browser proxy to control extensions (Closed)
Patch Set: self-review Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 CrSettingsSearchEnginesTest.prototype = { 536 CrSettingsSearchEnginesTest.prototype = {
537 __proto__: CrSettingsBrowserTest.prototype, 537 __proto__: CrSettingsBrowserTest.prototype,
538 538
539 /** @override */ 539 /** @override */
540 browsePreload: 540 browsePreload:
541 'chrome://md-settings/search_engines_page/search_engines_page.html', 541 'chrome://md-settings/search_engines_page/search_engines_page.html',
542 542
543 /** @override */ 543 /** @override */
544 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 544 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
545 'test_browser_proxy.js', 545 'test_browser_proxy.js',
546 'test_extension_control_browser_proxy.js',
546 'test_search_engines_browser_proxy.js', 547 'test_search_engines_browser_proxy.js',
547 'search_engines_page_test.js', 548 'search_engines_page_test.js',
548 ]), 549 ]),
549 }; 550 };
550 551
551 TEST_F('CrSettingsSearchEnginesTest', 'SearchEngines', function() { 552 TEST_F('CrSettingsSearchEnginesTest', 'SearchEngines', function() {
552 settings_search_engines_page.registerTests(); 553 settings_search_engines_page.registerTests();
553 mocha.run(); 554 mocha.run();
554 }); 555 });
555 556
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 1048 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
1048 'date_time_page_tests.js', 1049 'date_time_page_tests.js',
1049 ]), 1050 ]),
1050 }; 1051 };
1051 1052
1052 TEST_F('CrSettingsDateTimePageTest', 'DateTimePageTest', function() { 1053 TEST_F('CrSettingsDateTimePageTest', 'DateTimePageTest', function() {
1053 mocha.run(); 1054 mocha.run();
1054 }); 1055 });
1055 1056
1056 GEN('#endif'); 1057 GEN('#endif');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698