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

Unified Diff: chrome/test/data/webui/md_history/md_history_browsertest.js

Issue 1993613002: [MD History] Implement grouped history UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@privatize
Patch Set: address comments Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/webui/md_history/md_history_browsertest.js
diff --git a/chrome/test/data/webui/md_history/md_history_browsertest.js b/chrome/test/data/webui/md_history/md_history_browsertest.js
index ab0de7507fcde041cf3d20fd5e64f3228e2d868b..2277a757409da9b0e785ed9f26a3589accd0b354 100644
--- a/chrome/test/data/webui/md_history/md_history_browsertest.js
+++ b/chrome/test/data/webui/md_history/md_history_browsertest.js
@@ -29,6 +29,7 @@ MaterialHistoryBrowserTest.prototype = {
extraLibraries: PolymerTest.getLibraries(ROOT_PATH).concat([
'test_util.js',
'browser_service_test.js',
+ 'history_grouped_list_test.js',
'history_item_test.js',
'history_list_test.js',
'history_overflow_menu_test.js',
@@ -43,7 +44,9 @@ MaterialHistoryBrowserTest.prototype = {
suiteSetup(function() {
// Wait for the top-level app element to be upgraded.
- return waitForUpgrade($('history-app'));
+ return waitForUpgrade($('history-app')).then(function() {
+ $('history-app').queryingDisabled_ = true;
+ });
});
},
};
@@ -53,6 +56,11 @@ TEST_F('MaterialHistoryBrowserTest', 'BrowserServiceTest', function() {
mocha.run();
});
+TEST_F('MaterialHistoryBrowserTest', 'HistoryGroupedListTest', function() {
+ md_history.history_grouped_list_test.registerTests();
+ mocha.run();
+});
+
TEST_F('MaterialHistoryBrowserTest', 'HistoryItemTest', function() {
md_history.history_item_test.registerTests();
mocha.run();
« no previous file with comments | « chrome/test/data/webui/md_history/history_toolbar_test.js ('k') | chrome/test/data/webui/md_history/test_util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698