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

Unified Diff: chrome/test/data/webui/settings/cr_settings_browsertest.js

Issue 2964293002: CrOS Settings: Add skeleton page for multidevice section. (Closed)
Patch Set: Sync and rebase Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/webui/settings/cr_settings_browsertest.js
diff --git a/chrome/test/data/webui/settings/cr_settings_browsertest.js b/chrome/test/data/webui/settings/cr_settings_browsertest.js
index a8a05156b58af4016eb9596cfa2e498ecb7aea3c..2ee706ccef8d5239f0acb63c432f9bf6e819408e 100644
--- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
+++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
@@ -1640,6 +1640,29 @@ TEST_F('CrSettingsPrintingPageTest', 'All', function() {
mocha.run();
});
+/**
+ * Test fixture for the multidevice settings page.
+ * @constructor
+ * @extends {CrSettingsBrowserTest}
+ */
+function CrSettingsMultidevicePageTest() {}
+
+CrSettingsMultidevicePageTest.prototype = {
+ __proto__: CrSettingsBrowserTest.prototype,
+
+ /** @override */
+ browsePreload: 'chrome://md-settings/multidevice_page/multidevice_page.html',
+
+ /** @override */
+ extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
+ 'multidevice_page_tests.js',
+ ]),
+};
+
+TEST_F('CrSettingsMultidevicePageTest', 'All', function() {
+ mocha.run();
+});
+
GEN('#endif');
GEN('#if defined(OS_CHROMEOS)');

Powered by Google App Engine
This is Rietveld 408576698