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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs

Issue 938623003: Fix ChromeVox next tests to fail instead of timing out where applicable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify async callback handling in the tests. Created 5 years, 9 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/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs
index c6238ea12635d27fe3a8083cc1aaec95bc7fbde9..443885c3735b110630a06d6d976960221ab7ff55 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs
@@ -10,7 +10,9 @@ GEN_INCLUDE(['../../testing/chromevox_next_e2e_test_base.js']);
* @constructor
* @extends {ChromeVoxNextE2ETestBase}
*/
-function OutputE2ETest() {}
+function OutputE2ETest() {
+ ChromeVoxNextE2ETest.call(this);
+}
OutputE2ETest.prototype = {
__proto__: ChromeVoxNextE2ETest.prototype,
@@ -33,6 +35,5 @@ TEST_F('OutputE2ETest', 'RenderBasic', function() {
{value: {}, start: 11, end: 15}
]},
o.getBuffer());
- testDone();
- }.bind(this));
+ });
});

Powered by Google App Engine
This is Rietveld 408576698