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

Side by Side Diff: pubspec.yaml

Issue 2126803003: Support test 0.12.15. (Closed) Base URL: git@github.com:dart-lang/scheduled_test@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « CHANGELOG.md ('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 name: scheduled_test 1 name: scheduled_test
2 version: 0.12.5+6 2 version: 0.12.6
3 author: Dart Team <misc@dartlang.org> 3 author: Dart Team <misc@dartlang.org>
4 description: > 4 description: >
5 A package for writing readable tests of asynchronous behavior. 5 A package for writing readable tests of asynchronous behavior.
6 6
7 This package works by building up a queue of asynchronous tasks called a 7 This package works by building up a queue of asynchronous tasks called a
8 "schedule", then executing those tasks in order. This allows the tests to 8 "schedule", then executing those tasks in order. This allows the tests to
9 read like synchronous, linear code, despite executing asynchronously. 9 read like synchronous, linear code, despite executing asynchronously.
10 10
11 homepage: https://github.com/dart-lang/scheduled_test 11 homepage: https://github.com/dart-lang/scheduled_test
12 environment: 12 environment:
13 sdk: '>=1.16.0 <2.0.0' 13 sdk: '>=1.16.0 <2.0.0'
14 dependencies: 14 dependencies:
15 async: '^1.10.0' 15 async: '^1.10.0'
16 collection: '^1.5.0' 16 collection: '^1.5.0'
17 http_multi_server: '>=1.0.0 <3.0.0' 17 http_multi_server: '>=1.0.0 <3.0.0'
18 http: '>=0.9.0 <0.12.0' 18 http: '>=0.9.0 <0.12.0'
19 path: '>=0.9.0 <2.0.0' 19 path: '>=0.9.0 <2.0.0'
20 shelf: '>=0.5.2 <0.8.0' 20 shelf: '>=0.5.2 <0.8.0'
21 stack_trace: '>=0.9.1 <2.0.0' 21 stack_trace: '>=0.9.1 <2.0.0'
22 22
23 # Because scheduled_test exports test, it needs to keep its version constraint 23 # Because scheduled_test exports test, it needs to keep its version constraint
24 # tight to ensure that a constraint on scheduled_test properly constraints all 24 # tight to ensure that a constraint on scheduled_test properly constraints all
25 # features it provides. 25 # features it provides.
26 test: '>=0.12.7 <0.12.15' 26 test: '>=0.12.15 <0.12.16'
27 dev_dependencies: 27 dev_dependencies:
28 metatest: "^0.2.1" 28 metatest: "^0.2.1"
29 shelf_web_socket: "^0.2.0" 29 shelf_web_socket: "^0.2.0"
OLDNEW
« no previous file with comments | « CHANGELOG.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698