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