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

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

Issue 1981033003: MD Settings: About page, implement help and feedback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak strings to match the mocks." Created 4 years, 7 months 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
« no previous file with comments | « chrome/test/data/webui/settings/about_page_tests.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'test_browser_proxy.js', 84 'test_browser_proxy.js',
85 'about_page_tests.js', 85 'about_page_tests.js',
86 ]), 86 ]),
87 }; 87 };
88 88
89 TEST_F('CrSettingsAboutPageTest', 'AboutPage', function() { 89 TEST_F('CrSettingsAboutPageTest', 'AboutPage', function() {
90 settings_about_page.registerTests(); 90 settings_about_page.registerTests();
91 mocha.run(); 91 mocha.run();
92 }); 92 });
93 93
94 GEN('#if defined(GOOGLE_CHROME_BUILD)');
95 TEST_F('CrSettingsAboutPageTest', 'AboutPage_OfficialBuild', function() {
96 settings_about_page.registerOfficialBuildTests();
97 mocha.run();
98 });
99 GEN('#endif');
100
94 GEN('#if defined(OS_CHROMEOS)'); 101 GEN('#if defined(OS_CHROMEOS)');
95 /** 102 /**
96 * Test fixture for 103 * Test fixture for
97 * chrome/browser/resources/settings/people_page/change_picture.html. 104 * chrome/browser/resources/settings/people_page/change_picture.html.
98 * This is ChromeOS only. 105 * This is ChromeOS only.
99 * @constructor 106 * @constructor
100 * @extends {CrSettingsBrowserTest} 107 * @extends {CrSettingsBrowserTest}
101 */ 108 */
102 function CrSettingsPeoplePageChangePictureTest() {} 109 function CrSettingsPeoplePageChangePictureTest() {}
103 110
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 535 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
529 'fake_language_settings_private.js', 536 'fake_language_settings_private.js',
530 'fake_settings_private.js', 537 'fake_settings_private.js',
531 'languages_page_tests.js', 538 'languages_page_tests.js',
532 ]), 539 ]),
533 }; 540 };
534 541
535 TEST_F('CrSettingsLanguagesPageTest', 'LanguagesPage', function() { 542 TEST_F('CrSettingsLanguagesPageTest', 'LanguagesPage', function() {
536 mocha.run(); 543 mocha.run();
537 }); 544 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/settings/about_page_tests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698