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

Side by Side Diff: chrome/test/data/webui/settings/multidevice_page_tests.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 unified diff | Download patch
« no previous file with comments | « chrome/test/data/webui/settings/cr_settings_browsertest.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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 suite('Multidevice', function() {
6 var multidevicePage = null;
7
8 suiteSetup(function() {
9 });
10
11 setup(function() {
12 PolymerTest.clearBody();
13 multidevicePage = document.createElement('settings-multidevice-page');
14 assertTrue(!!multidevicePage);
15
16 document.body.appendChild(multidevicePage);
17 Polymer.dom.flush();
18 });
19
20 teardown(function() {
21 multidevicePage.remove();
22 });
23
24 test('MainPage', function() {
25 // TODO: Write test once the setting is actually functional.
26 });
27 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/settings/cr_settings_browsertest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698