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

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

Issue 2752223004: MD Bookmarks: Remove deleted nodes from state tree (Closed)
Patch Set: Rebase 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 __proto__: MaterialBookmarksBrowserTest.prototype, 163 __proto__: MaterialBookmarksBrowserTest.prototype,
164 164
165 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 165 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
166 'store_client_test.js', 166 'store_client_test.js',
167 ]), 167 ]),
168 }; 168 };
169 169
170 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { 170 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() {
171 mocha.run(); 171 mocha.run();
172 }); 172 });
173
174 function MaterialBookmarksUtilTest() {}
175
176 MaterialBookmarksUtilTest.prototype = {
177 __proto__: MaterialBookmarksBrowserTest.prototype,
178
179 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
180 'util_test.js',
181 ]),
182 };
183
184 TEST_F('MaterialBookmarksUtilTest', 'All', function() {
185 mocha.run();
186 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/util.js ('k') | chrome/test/data/webui/md_bookmarks/reducers_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698