Index: client/tests/client/html/SVGElementTest.dart |
diff --git a/client/tests/client/html/SVGElementTests.dart b/client/tests/client/html/SVGElementTest.dart |
similarity index 97% |
rename from client/tests/client/html/SVGElementTests.dart |
rename to client/tests/client/html/SVGElementTest.dart |
index 275f328688b760b8caf857f0cd9000f9a49f9c73..9548505dbc61c45beecde53d53f1039b38e6ec6a 100644 |
--- a/client/tests/client/html/SVGElementTests.dart |
+++ b/client/tests/client/html/SVGElementTest.dart |
@@ -2,8 +2,14 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+#library('SVGElementTest'); |
+#import('../../../../lib/unittest/unittest.dart'); |
+#import('../../../../lib/unittest/html_config.dart'); |
+#import('dart:html'); |
+ |
+main() { |
+ useHtmlConfiguration(); |
-void testSVGElement() { |
Collection<String> _nodeStrings(Collection<Node> input) { |
final out = new List<String>(); |
for (Node n in input) { |
@@ -181,4 +187,4 @@ void testSVGElement() { |
Expect.equals('<circle></circle><path></path>', el.innerHTML); |
}); |
}); |
-} |
+} |