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

Unified Diff: pkg/unittest/lib/test_controller.js

Issue 68213016: Remove uses of Selenium and webdriver from test scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix comment. Created 7 years, 1 month 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 | « no previous file | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/test_controller.js
diff --git a/pkg/unittest/lib/test_controller.js b/pkg/unittest/lib/test_controller.js
index f78fbde73359ed5487ae2a447cddeb02c72b5374..6f604cd50f734ba4ca1a30c6eb75005dc74b399a 100644
--- a/pkg/unittest/lib/test_controller.js
+++ b/pkg/unittest/lib/test_controller.js
@@ -47,7 +47,7 @@ if (navigator.webkitStartDart && !window.HTMLImports) {
}
// testRunner is provided by content shell.
-// It is not available in selenium tests.
+// It is not available in browser tests.
var testRunner = window.testRunner || window.layoutTestController;
var waitForDone = false;
@@ -135,8 +135,8 @@ function showErrorAndExit(message) {
if (message) {
printMessage('Error: ' + String(message));
}
- // dart/tools/testing/run_selenium.py is looking for either PASS or
- // FAIL and will continue polling until one of these words show up.
+ // dart/tools/testing/test_runner.dart is looking for either PASS or
+ // FAIL in a browser test's output.
printMessage('FAIL');
notifyDone();
}
« no previous file with comments | « no previous file | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698