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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/testing/chromevox_e2e_test_base.js

Issue 541403002: Rename ChromeVox tests and utilities for consistency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Clarify comment in .gypi file. Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 * Base test fixture for ChromeVox end to end tests. 6 * Base test fixture for ChromeVox end to end tests.
7 * 7 *
8 * These tests run against production ChromeVox inside of the extension's 8 * These tests run against production ChromeVox inside of the extension's
9 * background page context. 9 * background page context.
10 * @constructor 10 * @constructor
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 * @param {string} testName Test name. 64 * @param {string} testName Test name.
65 * @param {function} testFunction The test impl. 65 * @param {function} testFunction The test impl.
66 */ 66 */
67 function SYNC_TEST_F(testFixture, testName, testFunction) { 67 function SYNC_TEST_F(testFixture, testName, testFunction) {
68 var wrappedTestFunction = function() { 68 var wrappedTestFunction = function() {
69 testFunction(); 69 testFunction();
70 testDone([true, '']); 70 testDone([true, '']);
71 }; 71 };
72 TEST_F(testFixture, testName, wrappedTestFunction); 72 TEST_F(testFixture, testName, wrappedTestFunction);
73 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698