Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 name: test | 1 name: test |
| 2 | 2 |
| 3 # This version should really be 0.12.4-dev, but scheduled_test depends on | 3 # This version should really be 0.12.4-dev, but scheduled_test depends on |
| 4 # test <0.12.4, so we're using + instead. | 4 # test <0.12.4, so we're using + instead. |
|
kevmoo
2015/08/10 22:40:37
kill this comment?
nweiz
2015/08/10 22:43:06
Done.
| |
| 5 version: 0.12.3+dev | 5 version: 0.12.4 |
| 6 author: Dart Team <misc@dartlang.org> | 6 author: Dart Team <misc@dartlang.org> |
| 7 description: A library for writing dart unit tests. | 7 description: A library for writing dart unit tests. |
| 8 homepage: https://github.com/dart-lang/test | 8 homepage: https://github.com/dart-lang/test |
| 9 environment: | 9 environment: |
| 10 sdk: '>=1.9.0 <2.0.0' | 10 sdk: '>=1.9.0 <1.13.0' |
| 11 dependencies: | 11 dependencies: |
| 12 analyzer: '>=0.23.0 <0.27.0' | 12 analyzer: '>=0.23.0 <0.27.0' |
| 13 args: '>=0.12.1 <0.14.0' | 13 args: '>=0.12.1 <0.14.0' |
| 14 | 14 |
| 15 # TODO(nweiz): Bring in a hosted version of async when 1.3.0 is released. | 15 # TODO(nweiz): Bring in a hosted version of async when 1.3.0 is released. |
| 16 async: {git: git://github.com/dart-lang/async.git} | 16 async: {git: git://github.com/dart-lang/async.git} |
| 17 barback: '>=0.14.0 <0.16.0' | 17 barback: '>=0.14.0 <0.16.0' |
| 18 collection: '^1.1.0' | 18 collection: '^1.1.0' |
| 19 crypto: '^0.9.0' | 19 crypto: '^0.9.0' |
| 20 glob: '^1.0.0' | 20 glob: '^1.0.0' |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 32 stack_trace: '^1.2.1' | 32 stack_trace: '^1.2.1' |
| 33 string_scanner: '^0.1.1' | 33 string_scanner: '^0.1.1' |
| 34 yaml: '>=0.9.0 <3.0.0' | 34 yaml: '>=0.9.0 <3.0.0' |
| 35 | 35 |
| 36 # Use a tight version constraint to ensure that a constraint on matcher | 36 # Use a tight version constraint to ensure that a constraint on matcher |
| 37 # properly constrains all features it provides. | 37 # properly constrains all features it provides. |
| 38 matcher: '>=0.12.0 <0.12.1' | 38 matcher: '>=0.12.0 <0.12.1' |
| 39 dev_dependencies: | 39 dev_dependencies: |
| 40 fake_async: '^0.1.2' | 40 fake_async: '^0.1.2' |
| 41 scheduled_test: '^0.12.2' | 41 scheduled_test: '^0.12.2' |
| OLD | NEW |