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

Side by Side Diff: chrome/test/data/webui/md_bookmarks/md_bookmarks_browsertest.js

Issue 2742583003: MD Bookmarks: Extract bookmark editing into a <bookmark-edit-dialog> element (Closed)
Patch Set: Fix closure Created 3 years, 9 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 /** 5 /**
6 * @fileoverview Test suite for the Material Design bookmarks page. 6 * @fileoverview Test suite for the Material Design bookmarks page.
7 */ 7 */
8 var ROOT_PATH = '../../../../../'; 8 var ROOT_PATH = '../../../../../';
9 9
10 GEN_INCLUDE( 10 GEN_INCLUDE(
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
50 'sidebar_test.js', 50 'sidebar_test.js',
51 ]), 51 ]),
52 }; 52 };
53 53
54 TEST_F('MaterialBookmarksSidebarTest', 'All', function() { 54 TEST_F('MaterialBookmarksSidebarTest', 'All', function() {
55 mocha.run(); 55 mocha.run();
56 }); 56 });
57 57
58 function MaterialBookmarksEditDialogTest() {}
59
60 MaterialBookmarksEditDialogTest.prototype = {
61 __proto__: MaterialBookmarksBrowserTest.prototype,
62
63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
64 'edit_dialog_test.js',
65 ]),
66 };
67
68 TEST_F('MaterialBookmarksEditDialogTest', 'All', function() {
69 mocha.run();
70 });
71
58 function MaterialBookmarksItemTest() {} 72 function MaterialBookmarksItemTest() {}
59 73
60 MaterialBookmarksItemTest.prototype = { 74 MaterialBookmarksItemTest.prototype = {
61 __proto__: MaterialBookmarksBrowserTest.prototype, 75 __proto__: MaterialBookmarksBrowserTest.prototype,
62 76
63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 77 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
64 'item_test.js', 78 'item_test.js',
65 ]), 79 ]),
66 }; 80 };
67 81
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 browsePreload: 'chrome://bookmarks/store_client.html', 120 browsePreload: 'chrome://bookmarks/store_client.html',
107 121
108 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 122 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
109 'store_client_test.js', 123 'store_client_test.js',
110 ]), 124 ]),
111 }; 125 };
112 126
113 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { 127 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() {
114 mocha.run(); 128 mocha.run();
115 }); 129 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698