| Index: samples/third_party/todomvc/test/mainpage_test.dart
|
| diff --git a/samples/third_party/todomvc/test/mainpage_test.dart b/samples/third_party/todomvc/test/mainpage_test.dart
|
| index 97347154061c224e383e8e863703d57326b405e2..7160ffc02d85884307bcaa5f066f5d544efa427c 100644
|
| --- a/samples/third_party/todomvc/test/mainpage_test.dart
|
| +++ b/samples/third_party/todomvc/test/mainpage_test.dart
|
| @@ -15,9 +15,11 @@ import '../web/model.dart';
|
| * This test runs the TodoMVC app and checks the state of the initial page.
|
| */
|
| // TODO(jmesserly): verify some styles (colors, fonts, relative size) as well.
|
| -@initMethod _main() {
|
| +main() {
|
| + initPolymer();
|
| useHtmlConfiguration();
|
|
|
| + wrapMicrotask((){
|
| setUp(() => Polymer.onReady);
|
|
|
| test('initial state', () {
|
| @@ -38,4 +40,5 @@ import '../web/model.dart';
|
| expect(root.queryAll('[is=todo-row]').length, 0, reason: 'no items yet');
|
| }));*/
|
| });
|
| + })();
|
| }
|
|
|