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

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: Rename event handlers 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
« no previous file with comments | « chrome/test/data/webui/md_bookmarks/list_test.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 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 __proto__: MaterialBookmarksBrowserTest.prototype, 149 __proto__: MaterialBookmarksBrowserTest.prototype,
136 150
137 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 151 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
138 'store_client_test.js', 152 'store_client_test.js',
139 ]), 153 ]),
140 }; 154 };
141 155
142 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { 156 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() {
143 mocha.run(); 157 mocha.run();
144 }); 158 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/md_bookmarks/list_test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698