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

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

Issue 2666033002: [MD Bookmarks] Add edit folder. (Closed)
Patch Set: Test with mockinteractions in list test. Created 3 years, 10 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 __proto__: MaterialBookmarksBrowserTest.prototype, 60 __proto__: MaterialBookmarksBrowserTest.prototype,
61 61
62 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 62 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
63 'item_test.js', 63 'item_test.js',
64 ]), 64 ]),
65 }; 65 };
66 66
67 TEST_F('MaterialBookmarksItemTest', 'All', function() { 67 TEST_F('MaterialBookmarksItemTest', 'All', function() {
68 mocha.run(); 68 mocha.run();
69 }); 69 });
70
71 function MaterialBookmarksListTest() {}
72
73 MaterialBookmarksListTest.prototype = {
74 __proto__: MaterialBookmarksBrowserTest.prototype,
75
76 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
77 'list_test.js',
78 ]),
79 };
80
81 TEST_F('MaterialBookmarksListTest', 'All', function() {
82 mocha.run();
83 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/md_bookmarks/list_test.js ('k') | chrome/test/data/webui/md_bookmarks/store_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698