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

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: Minor cleanups 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
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

Powered by Google App Engine
This is Rietveld 408576698