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

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

Issue 2834493006: MD Bookmarks: Pull context menu into separate element (Closed)
Patch Set: Rebase Created 3 years, 7 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/command_manager_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 'app_test.js', 50 'app_test.js',
51 ]), 51 ]),
52 }; 52 };
53 53
54 TEST_F('MaterialBookmarksAppTest', 'All', function() { 54 TEST_F('MaterialBookmarksAppTest', 'All', function() {
55 mocha.run(); 55 mocha.run();
56 }); 56 });
57 57
58 function MaterialBookmarksCommandManagerTest() {}
59
60 MaterialBookmarksCommandManagerTest.prototype = {
61 __proto__: MaterialBookmarksBrowserTest.prototype,
62
63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
64 'command_manager_test.js',
65 ]),
66 };
67
68 TEST_F('MaterialBookmarksCommandManagerTest', 'All', function() {
69 mocha.run();
70 });
71
58 function MaterialBookmarksDNDManagerTest() {} 72 function MaterialBookmarksDNDManagerTest() {}
59 73
60 MaterialBookmarksDNDManagerTest.prototype = { 74 MaterialBookmarksDNDManagerTest.prototype = {
61 __proto__: MaterialBookmarksBrowserTest.prototype, 75 __proto__: MaterialBookmarksBrowserTest.prototype,
62 76
63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 77 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
64 'dnd_manager_test.js', 78 'dnd_manager_test.js',
65 ]), 79 ]),
66 }; 80 };
67 81
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 __proto__: MaterialBookmarksBrowserTest.prototype, 201 __proto__: MaterialBookmarksBrowserTest.prototype,
188 202
189 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 203 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
190 'util_test.js', 204 'util_test.js',
191 ]), 205 ]),
192 }; 206 };
193 207
194 TEST_F('MaterialBookmarksUtilTest', 'All', function() { 208 TEST_F('MaterialBookmarksUtilTest', 'All', function() {
195 mocha.run(); 209 mocha.run();
196 }); 210 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/md_bookmarks/command_manager_test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698