| OLD | NEW |
| 1 name: scheduled_test | 1 name: scheduled_test |
| 2 version: 0.12.5+5 | 2 version: 0.12.5+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.14' | 26 test: '>=0.12.7 <0.12.15' |
| 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" |
| OLD | NEW |