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

Unified Diff: chrome/test/data/extensions/api_test/cross_origin_xhr/file_access/test.js

Issue 10534054: Improve extension api tests: run all tests, even if one fails (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix some tests Created 8 years, 6 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/extensions/api_test/cross_origin_xhr/file_access/test.js
diff --git a/chrome/test/data/extensions/api_test/cross_origin_xhr/file_access/test.js b/chrome/test/data/extensions/api_test/cross_origin_xhr/file_access/test.js
index 20e5c8749d6248086a4a36e0feb830712d11bd3f..8258b72c697333fd6a182f1526c63d8d568bf175 100644
--- a/chrome/test/data/extensions/api_test/cross_origin_xhr/file_access/test.js
+++ b/chrome/test/data/extensions/api_test/cross_origin_xhr/file_access/test.js
@@ -13,7 +13,7 @@ chrome.test.getConfig(function(config) {
req.onload = function() {
chrome.test.assertEq("Hello!", req.responseText);
- chrome.test.runNextTest();
+ chrome.test.succeed();
}
req.onerror = function() {
chrome.test.log("status: " + req.status);

Powered by Google App Engine
This is Rietveld 408576698