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

Side by Side Diff: chrome/test/data/webui/md_history/md_history_browsertest.js

Issue 2613503004: MD History: Move flaky focus tests into interactive UI tests (Closed)
Patch Set: Remove unnecessary (?) dep 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 history page. 6 * @fileoverview Test suite for the Material Design history page.
7 */ 7 */
8 8
9 var ROOT_PATH = '../../../../../'; 9 var ROOT_PATH = '../../../../../';
10 10
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 function MaterialHistoryToolbarTest() {} 241 function MaterialHistoryToolbarTest() {}
242 242
243 MaterialHistoryToolbarTest.prototype = { 243 MaterialHistoryToolbarTest.prototype = {
244 __proto__: MaterialHistoryBrowserTest.prototype, 244 __proto__: MaterialHistoryBrowserTest.prototype,
245 245
246 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([ 246 extraLibraries: MaterialHistoryBrowserTest.prototype.extraLibraries.concat([
247 'history_toolbar_test.js', 247 'history_toolbar_test.js',
248 ]), 248 ]),
249 }; 249 };
250 250
251 TEST_F('MaterialHistoryToolbarTest', 'Basic', function() { 251 TEST_F('MaterialHistoryToolbarTest', 'All', function() {
252 md_history.history_toolbar_test.registerTests(); 252 md_history.history_toolbar_test.registerTests();
253 mocha.run(); 253 mocha.run();
254 }); 254 });
255
256 TEST_F('MaterialHistoryToolbarTest', 'Focus', function() {
257 md_history.history_toolbar_focus_test.registerTests();
258 mocha.run();
259 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/md_history/history_toolbar_test.js ('k') | chrome/test/data/webui/md_history/md_history_focus_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698