| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | |
| 6 import 'dart:html'; | 5 import 'dart:html'; |
| 7 | 6 |
| 8 import 'package:mdv/mdv.dart' as mdv; | 7 import 'package:mdv/mdv.dart' as mdv; |
| 9 import 'package:observe/observe.dart'; | 8 import 'package:observe/observe.dart'; |
| 10 import 'package:observe/src/microtask.dart'; | 9 import 'package:observe/src/microtask.dart'; |
| 11 import 'package:polymer_expressions/polymer_expressions.dart'; | 10 import 'package:polymer_expressions/polymer_expressions.dart'; |
| 12 import 'package:unittest/unittest.dart'; | 11 import 'package:unittest/unittest.dart'; |
| 13 import 'package:unittest/html_enhanced_config.dart'; | 12 import 'package:unittest/html_enhanced_config.dart'; |
| 14 | 13 |
| 15 main() { | 14 main() { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 45 | 44 |
| 46 expect(testDiv.queryAll('div').map((n) => n.text), [ | 45 expect(testDiv.queryAll('div').map((n) => n.text), [ |
| 47 'Item 0 is hello', | 46 'Item 0 is hello', |
| 48 'Item 1 is from', | 47 'Item 1 is from', |
| 49 'Item 2 is polymer', | 48 'Item 2 is polymer', |
| 50 'Item 3 is expressions', | 49 'Item 3 is expressions', |
| 51 ]); | 50 ]); |
| 52 })); | 51 })); |
| 53 }); | 52 }); |
| 54 } | 53 } |
| OLD | NEW |