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

Unified Diff: pkg/dev_compiler/test/codegen/lib/html/input_element_test.dart

Issue 2413073002: Start cleaning up the HTML tests. (Closed)
Patch Set: Unfork expect.dart. Created 4 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: pkg/dev_compiler/test/codegen/lib/html/input_element_test.dart
diff --git a/pkg/dev_compiler/test/codegen/lib/html/input_element_test.dart b/pkg/dev_compiler/test/codegen/lib/html/input_element_test.dart
index 9509e02ca67d66d4ee4b12ecf0bd6daed3b898f1..64a4aa7170e0f14840df90f9c1a418c38c5d1807 100644
--- a/pkg/dev_compiler/test/codegen/lib/html/input_element_test.dart
+++ b/pkg/dev_compiler/test/codegen/lib/html/input_element_test.dart
@@ -1,8 +1,7 @@
-library input_element_test;
-import 'package:unittest/unittest.dart';
-import 'package:unittest/html_individual_config.dart';
import 'dart:html';
+import 'package:minitest/minitest.dart';
+
void check(InputElement element, String type, [bool supported = true]) {
expect(element is InputElement, true);
if (supported) {
@@ -13,8 +12,6 @@ void check(InputElement element, String type, [bool supported = true]) {
}
main() {
- useHtmlIndividualConfiguration();
-
group('supported_search', () {
test('supported', () {
expect(SearchInputElement.supported, true);

Powered by Google App Engine
This is Rietveld 408576698