Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # This file contains a list of Mojo gtest unit tests. | 1 # This file contains a list of Mojo gtest unit tests. |
| 2 # This must be valid python. It can use the |config| global that will be a | 2 # This must be valid python. It can use the |config| global that will be a |
| 3 # mopy.config.Config object and must set a |tests| global that will contain the | 3 # mopy.config.Config object and must set a |tests| global that will contain the |
| 4 # tests to run. | 4 # tests to run. |
| 5 # TODO(vtl|msw): Add a way of specifying data dependencies. | 5 # TODO(vtl|msw): Add a way of specifying data dependencies. |
| 6 | 6 |
| 7 tests = [ | 7 tests = [ |
| 8 { | 8 { |
| 9 "test": "mojo:clipboard_apptests", | 9 "test": "mojo:clipboard_apptests", |
| 10 }, | 10 }, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 74 "launched-services": ["test:example_service"], | 74 "launched-services": ["test:example_service"], |
| 75 }, | 75 }, |
| 76 { | 76 { |
| 77 "test": "mojo:js_apptests", | 77 "test": "mojo:js_apptests", |
| 78 }, | 78 }, |
| 79 { | 79 { |
| 80 "test": "mojo:reaper_apptests", | 80 "test": "mojo:reaper_apptests", |
| 81 }, | 81 }, |
| 82 { | 82 { |
| 83 "test": "mojo:dart_apptests", | 83 "test": "mojo:dart_apptests", |
| 84 "darttest": True, | |
|
msw
2015/03/04 00:49:50
Maybe this should be something like "type": "dart"
| |
| 84 }, | 85 }, |
| 85 ] | 86 ] |
| OLD | NEW |