| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 import 'dart:html'; | 5 import 'dart:html'; |
| 5 import 'package:unittest/unittest.dart'; | 6 import 'package:unittest/unittest.dart'; |
| 6 import 'package:observatory/src/elements/nav/bar.dart'; | 7 import 'package:observatory/src/elements/nav/bar.dart'; |
| 7 | 8 |
| 8 main() { | 9 main() { |
| 9 NavBarElement.tag.ensureRegistration(); | 10 NavBarElement.tag.ensureRegistration(); |
| 10 | 11 |
| 11 test('instantiation', () { | 12 test('instantiation', () { |
| 12 final e = new NavBarElement(); | 13 final e = new NavBarElement(); |
| 13 expect(e, isNotNull, reason: 'element correctly created'); | 14 expect(e, isNotNull, reason: 'element correctly created'); |
| 14 }); | 15 }); |
| 15 test('elements created', () async { | 16 test('elements created', () async { |
| 16 final e = new NavBarElement(); | 17 final e = new NavBarElement(); |
| 17 document.body.append(e); | 18 document.body.append(e); |
| 18 await e.onRendered.first; | 19 await e.onRendered.first; |
| 19 expect(e.shadowRoot.children.length, isNonZero, reason: 'has elements'); | 20 expect(e.shadowRoot.children.length, isNonZero, reason: 'has elements'); |
| 20 expect(e.shadowRoot.querySelector('content'), isNotNull, | 21 expect(e.shadowRoot.querySelector('content'), isNotNull, |
| 21 reason: 'has content elements'); | 22 reason: 'has content elements'); |
| 22 e.remove(); | 23 e.remove(); |
| 23 await e.onRendered.first; | 24 await e.onRendered.first; |
| 24 expect(e.shadowRoot.children.length, isZero, reason: 'is empty'); | 25 expect(e.shadowRoot.children.length, isZero, reason: 'is empty'); |
| 25 }); | 26 }); |
| 26 } | 27 } |
| OLD | NEW |