Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(829)

Side by Side Diff: pkg/polymer/test/template_attr_template_test.dart

Issue 723393003: update to polymer js 0.5.1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: final tweaks Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698