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

Unified Diff: tests/html/node_test.dart

Issue 11293019: Run large html tests individually. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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: tests/html/node_test.dart
===================================================================
--- tests/html/node_test.dart (revision 14350)
+++ tests/html/node_test.dart (working copy)
@@ -4,7 +4,7 @@
#library('NodeTest');
#import('../../pkg/unittest/unittest.dart');
-#import('../../pkg/unittest/html_config.dart');
+#import('../../pkg/unittest/html_individual_config.dart');
#import('dart:html');
Node makeNode() => new Element.tag('div');
@@ -12,7 +12,7 @@
new Element.html("<div>Foo<br/><!--baz--></div>");
main() {
- useHtmlConfiguration();
+ useHtmlIndividualConfiguration();
var isText = predicate((x) => x is Text, 'is a Text');
var isComment = predicate((x) => x is Comment, 'is a Comment');

Powered by Google App Engine
This is Rietveld 408576698