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

Side by Side Diff: pkg/template_binding/test/template_binding_test.dart

Issue 196603029: Fix test timeouts. I forgot to include observe/mirrors_used.dart in tests from (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months 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
« no previous file with comments | « pkg/template_binding/test/node_bind_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 library template_binding.test.template_binding_test; 5 library template_binding.test.template_binding_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:math' as math; 9 import 'dart:math' as math;
10 import 'package:observe/observe.dart'; 10 import 'package:observe/observe.dart';
11 import 'package:observe/mirrors_used.dart'; // make test smaller.
11 import 'package:template_binding/template_binding.dart'; 12 import 'package:template_binding/template_binding.dart';
12 import 'package:unittest/html_config.dart'; 13 import 'package:unittest/html_config.dart';
13 import 'package:unittest/unittest.dart'; 14 import 'package:unittest/unittest.dart';
14 15
15 // TODO(jmesserly): merge this file? 16 // TODO(jmesserly): merge this file?
16 import 'binding_syntax.dart' show syntaxTests; 17 import 'binding_syntax.dart' show syntaxTests;
17 import 'utils.dart'; 18 import 'utils.dart';
18 19
19 // Note: this file ported from 20 // Note: this file ported from
20 // https://github.com/Polymer/TemplateBinding/blob/fcb7a502794f19544f2d4b77c96ee bb70830591d/tests/tests.js 21 // https://github.com/Polymer/TemplateBinding/blob/fcb7a502794f19544f2d4b77c96ee bb70830591d/tests/tests.js
(...skipping 2374 matching lines...) Expand 10 before | Expand all | Expand 10 after
2395 } 2396 }
2396 } 2397 }
2397 2398
2398 class Issue18Syntax extends BindingDelegate { 2399 class Issue18Syntax extends BindingDelegate {
2399 prepareBinding(path, name, node) { 2400 prepareBinding(path, name, node) {
2400 if (name != 'class') return null; 2401 if (name != 'class') return null;
2401 2402
2402 return (model, _, oneTime) => new PathObserver(model, path); 2403 return (model, _, oneTime) => new PathObserver(model, path);
2403 } 2404 }
2404 } 2405 }
OLDNEW
« no previous file with comments | « pkg/template_binding/test/node_bind_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698