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

Unified Diff: lib/src/runner/browser/iframe_listener.dart

Issue 983573002: Add support for running browser tests to the test runner. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: Created 5 years, 10 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: lib/src/runner/browser/iframe_listener.dart
diff --git a/lib/src/runner/browser/iframe_listener.dart b/lib/src/runner/browser/iframe_listener.dart
index d8e1f3bb5016d42705cd072a99cfcaadea5730d0..10d910f974229ddde80551d5b927fbea1fa3ca38 100644
--- a/lib/src/runner/browser/iframe_listener.dart
+++ b/lib/src/runner/browser/iframe_listener.dart
@@ -63,15 +63,14 @@ class IframeListener {
return;
}
- new IframeListener._(new Suite("IframeListener", declarer.tests))
- ._listen(channel);
+ new IframeListener._(new Suite(declarer.tests))._listen(channel);
}
/// Constructs a [MultiChannel] wrapping the `postMessage` communication with
/// the host page.
///
/// This [MultiChannel] corresponds to a [MultiChannel] in the server's
- /// [BrowserTest] class.
+ /// [IframeTest] class.
static MultiChannel _postMessageChannel() {
var inputController = new StreamController(sync: true);
var outputController = new StreamController(sync: true);

Powered by Google App Engine
This is Rietveld 408576698