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

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

Issue 2603303002: [MD Bookmarks] Add UI for Material Bookmarks. (Closed)
Patch Set: change TODO position Created 3 years, 11 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 21 matching lines...) Expand all
32 __proto__: MaterialBookmarksBrowserTest.prototype, 32 __proto__: MaterialBookmarksBrowserTest.prototype,
33 33
34 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 34 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
35 'store_test.js', 35 'store_test.js',
36 ]), 36 ]),
37 }; 37 };
38 38
39 TEST_F('MaterialBookmarksStoreTest', 'All', function() { 39 TEST_F('MaterialBookmarksStoreTest', 'All', function() {
40 mocha.run(); 40 mocha.run();
41 }); 41 });
42
43 function MaterialBookmarksSidebarTest() {}
44
45 MaterialBookmarksSidebarTest.prototype = {
46 __proto__: MaterialBookmarksBrowserTest.prototype,
47
48 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
49 'sidebar_test.js',
50 ]),
51 };
52
53 TEST_F('MaterialBookmarksSidebarTest', 'All', function() {
54 mocha.run();
55 });
56
57 function MaterialBookmarksItemTest() {}
58
59 MaterialBookmarksItemTest.prototype = {
60 __proto__: MaterialBookmarksBrowserTest.prototype,
61
62 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
63 'item_test.js',
64 ]),
65 };
66
67 TEST_F('MaterialBookmarksItemTest', 'All', function() {
68 mocha.run();
69 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/md_bookmarks/item_test.js ('k') | chrome/test/data/webui/md_bookmarks/sidebar_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698