Chromium Code Reviews| 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'; | 5 import 'dart:async'; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'package:polymer/polymer.dart'; | 7 import 'package:polymer/polymer.dart'; |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 9 import 'package:unittest/html_config.dart'; | 9 import 'package:unittest/html_config.dart'; |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 40 reason: 'attribute sub-template stamped'); | 40 reason: 'attribute sub-template stamped'); |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 main() => initPolymer().run(() { | 44 main() => initPolymer().run(() { |
| 45 useHtmlConfiguration(); | 45 useHtmlConfiguration(); |
| 46 | 46 |
| 47 setUp(() => Polymer.onReady); | 47 setUp(() => Polymer.onReady); |
| 48 | 48 |
| 49 test('declaration-tests-ran', () { | 49 test('declaration-tests-ran', () { |
| 50 // TODO(jakemac): Change this to '2' once http://dartbug.com/20197 is fixed. | 50 expect(testsRun, 2, reason: 'decoration-tests-ran'); |
|
Siggi Cherem (dart-lang)
2014/12/04 00:32:18
woo hoo!
| |
| 51 expect(testsRun, 3, reason: 'decoration-tests-ran'); | |
| 52 }); | 51 }); |
| 53 }); | 52 }); |
| OLD | NEW |