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

Unified Diff: test/custom_element_proxy_test.dart

Issue 1026153002: add initWebComponents (Closed) Base URL: git@github.com:dart-lang/web-components.git@master
Patch Set: code review updates Created 5 years, 9 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
« no previous file with comments | « test/build/mirrors_remover_test.dart ('k') | test/custom_element_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/custom_element_proxy_test.dart
diff --git a/test/custom_element_proxy_test.dart b/test/custom_element_proxy_test.dart
index 3437440bbef69543249e0ff77786beb3a4429b52..5fa11e0dbe569ecb5145afde6fc9ac0aaab93c5a 100644
--- a/test/custom_element_proxy_test.dart
+++ b/test/custom_element_proxy_test.dart
@@ -6,10 +6,9 @@ library custom_element_proxy_test;
import 'dart:async';
import 'dart:html';
import 'dart:js';
-import 'package:initialize/initialize.dart' as init;
import 'package:unittest/html_config.dart';
import 'package:unittest/unittest.dart';
-import 'package:web_components/custom_element_proxy.dart';
+import 'package:web_components/web_components.dart';
@CustomElementProxy('basic-element')
class BasicElement extends HtmlElement {
@@ -34,7 +33,7 @@ class ExtendedElement extends InputElement {
main() {
useHtmlConfiguration();
- init.run().then((_) {
+ initWebComponents().then((_) {
var container = querySelector('#container') as DivElement;
tearDown(() {
« no previous file with comments | « test/build/mirrors_remover_test.dart ('k') | test/custom_element_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698