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

Unified Diff: ui/file_manager/integration_tests/remote_call.js

Issue 2080613002: Quick View: Add a test that checks Quick View opens with Space key. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 4 years, 4 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
« no previous file with comments | « ui/file_manager/integration_tests/file_manager_test_manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/integration_tests/remote_call.js
diff --git a/ui/file_manager/integration_tests/remote_call.js b/ui/file_manager/integration_tests/remote_call.js
index aa014c6ed19bfe7f82349ea3569ae16c1944edea..547e0318f7b747b9f9f675d3d0466bf8d063987f 100644
--- a/ui/file_manager/integration_tests/remote_call.js
+++ b/ui/file_manager/integration_tests/remote_call.js
@@ -26,7 +26,8 @@ RemoteCall.isStepByStepEnabled = function() {
};
/**
- * Calls a remote test util in Files.app's extension. See: test_util.js.
+ * Calls a remote test util in Files.app's extension. See:
+ * registerRemoteTestUtils in test_util_base.js.
*
* @param {string} func Function name.
* @param {?string} appId Target window's App ID or null for functions
@@ -59,10 +60,11 @@ RemoteCall.prototype.callRemoteTestUtil =
appId: appId,
args: args
},
+ {},
function(var_args) {
if (stepByStep) {
console.info('Returned value:');
- console.info(arguments);
+ console.info(JSON.stringify(arguments));
}
if (opt_callback)
opt_callback.apply(null, arguments);
« no previous file with comments | « ui/file_manager/integration_tests/file_manager_test_manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698