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

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

Issue 2804503002: MD Bookmarks: Allow 'complex' actions to access the page state directly (Closed)
Patch Set: Self-review Created 3 years, 8 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 23 matching lines...) Expand all
34 34
35 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 35 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
36 'app_test.js', 36 'app_test.js',
37 ]), 37 ]),
38 }; 38 };
39 39
40 TEST_F('MaterialBookmarksAppTest', 'All', function() { 40 TEST_F('MaterialBookmarksAppTest', 'All', function() {
41 mocha.run(); 41 mocha.run();
42 }); 42 });
43 43
44 function MaterialBookmarksComplexActionsTest() {}
45
46 MaterialBookmarksComplexActionsTest.prototype = {
47 __proto__: MaterialBookmarksBrowserTest.prototype,
48
49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
50 'complex_actions_test.js',
51 ]),
52 };
53
54 TEST_F('MaterialBookmarksComplexActionsTest', 'All', function() {
55 mocha.run();
56 });
57
44 function MaterialBookmarksDNDManagerTest() {} 58 function MaterialBookmarksDNDManagerTest() {}
45 59
46 MaterialBookmarksDNDManagerTest.prototype = { 60 MaterialBookmarksDNDManagerTest.prototype = {
47 __proto__: MaterialBookmarksBrowserTest.prototype, 61 __proto__: MaterialBookmarksBrowserTest.prototype,
48 62
49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
50 'dnd_manager_test.js', 64 'dnd_manager_test.js',
51 ]), 65 ]),
52 }; 66 };
53 67
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 __proto__: MaterialBookmarksBrowserTest.prototype, 191 __proto__: MaterialBookmarksBrowserTest.prototype,
178 192
179 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 193 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
180 'util_test.js', 194 'util_test.js',
181 ]), 195 ]),
182 }; 196 };
183 197
184 TEST_F('MaterialBookmarksUtilTest', 'All', function() { 198 TEST_F('MaterialBookmarksUtilTest', 'All', function() {
185 mocha.run(); 199 mocha.run();
186 }); 200 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698