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

Side by Side Diff: samples/third_party/todomvc/test/mainpage_test.dart

Issue 27274002: Fixing bots after Polymer element integration (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
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 todomvc.test.mainpage_test; 5 library todomvc.test.mainpage_test;
6 6
7 import 'dart:async';
7 import 'dart:html'; 8 import 'dart:html';
8 import 'package:unittest/unittest.dart'; 9 import 'package:unittest/unittest.dart';
9 import 'package:unittest/html_config.dart'; 10 import 'package:unittest/html_config.dart';
10 import '../web/app.dart'; 11 import '../web/app.dart';
11 import '../web/model.dart'; 12 import '../web/model.dart';
12 13
13 /** 14 /**
14 * This test runs the TodoMVC app and checks the state of the initial page. 15 * This test runs the TodoMVC app and checks the state of the initial page.
15 */ 16 */
16 // TODO(jmesserly): verify some styles (colors, fonts, relative size) as well. 17 // TODO(jmesserly): verify some styles (colors, fonts, relative size) as well.
17 main() { 18 main() {
18 useHtmlConfiguration(); 19 useHtmlConfiguration();
19 20
21 setUp(() => new Future.delayed(Duration.ZERO));
22
20 test('initial state', () { 23 test('initial state', () {
21 final todoApp = query('todo-app'); 24 final todoApp = query('todo-app');
22 expect(appModel.todos.length, 0); 25 expect(appModel.todos.length, 0);
23 expect(todoApp.xtag is TodoApp, true, reason: 'TodoApp should bee created'); 26 expect(todoApp.xtag is TodoApp, true, reason: 'TodoApp should bee created');
24 27
25 final root = todoApp.shadowRoot; 28 final root = todoApp.shadowRoot;
26 final newTodo = root.query('#new-todo'); 29 final newTodo = root.query('#new-todo');
27 expect(newTodo.placeholder, "What needs to be done?"); 30 expect(newTodo.placeholder, "What needs to be done?");
28 31
29 // TODO(jmesserly): re-enable this. It fails on Firefox with ShadowDOM. 32 // TODO(jmesserly): re-enable this. It fails on Firefox with ShadowDOM.
30 // The issue appears to be that 33 // The issue appears to be that
31 // Wait for setTimeout 0 for focus to activate. 34 // Wait for setTimeout 0 for focus to activate.
32 /*Timer.run(expectAsync0(() { 35 /*Timer.run(expectAsync0(() {
33 expect(document.activeElement, todoApp, reason: 'app should have focus'); 36 expect(document.activeElement, todoApp, reason: 'app should have focus');
34 expect(root.activeElement, newTodo, reason: 'New todo should have focus'); 37 expect(root.activeElement, newTodo, reason: 'New todo should have focus');
35 expect(root.queryAll('[is=todo-row]').length, 0, reason: 'no items yet'); 38 expect(root.queryAll('[is=todo-row]').length, 0, reason: 'no items yet');
36 }));*/ 39 }));*/
37 }); 40 });
38 } 41 }
OLDNEW
« no previous file with comments | « samples/third_party/todomvc/test/listorder_test.dart ('k') | samples/third_party/todomvc/test/markdone_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698