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

Unified Diff: dart/pkg/unittest/test/missing_tick_test.dart

Issue 22849010: TestCase times out after 20 seconds. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add copyright and TODO. Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/pkg/unittest/lib/unittest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/pkg/unittest/test/missing_tick_test.dart
diff --git a/dart/utils/tests/testrunner/non_browser_tests/non_browser_toast.dart b/dart/pkg/unittest/test/missing_tick_test.dart
old mode 100755
new mode 100644
similarity index 66%
copy from dart/utils/tests/testrunner/non_browser_tests/non_browser_toast.dart
copy to dart/pkg/unittest/test/missing_tick_test.dart
index fa32af371bfb738b947a2e9188a4309068411380..7b42fab95be9564dc340e37a03fa9a217b74f1e1
--- a/dart/utils/tests/testrunner/non_browser_tests/non_browser_toast.dart
+++ b/dart/pkg/unittest/test/missing_tick_test.dart
@@ -2,15 +2,13 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library testrunner_test;
-
import 'package:unittest/unittest.dart';
+// TODO(gram): Convert to a shouldFail passing test.
main() {
- group('foo', () {
- test('bar', () {
- expect(true, isTrue);
+ group('Broken', () {
+ test('test that should time out', () {
+ expectAsync0(() {});
});
});
}
-
« no previous file with comments | « dart/pkg/unittest/lib/unittest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698