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 # | 2 # |
3 # This must be valid Python. It may use the |config| global that will be a | 3 # This must be valid Python. It may use the |config| global that will be a |
4 # mopy.config.Config object, and must set a |tests| global that will contain the | 4 # mopy.config.Config object, and must set a |tests| global that will contain the |
5 # list of tests to run. | 5 # list of tests to run. |
6 # | 6 # |
7 # The entries in |tests| are dictionaries of the following form: | 7 # The entries in |tests| are dictionaries of the following form: |
8 # { | 8 # { |
9 # # Required URL for apptest. | 9 # # Required URL for apptest. |
10 # "test": "mojo:test_app_url", | 10 # "test": "mojo:test_app_url", |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 { | 114 { |
115 "test": "mojo:dart_apptests", | 115 "test": "mojo:dart_apptests", |
116 "type": "dart", | 116 "type": "dart", |
117 }, | 117 }, |
118 { | 118 { |
119 # https://github.com/domokit/mojo/issues/61 | 119 # https://github.com/domokit/mojo/issues/61 |
120 # Sometime the shell get a trucated application when exposed through the | 120 # Sometime the shell get a trucated application when exposed through the |
121 # http server. | 121 # http server. |
122 "test": "mojo:shell_apptests", | 122 "test": "mojo:shell_apptests", |
123 }, | 123 }, |
| 124 { |
| 125 "test": "mojo:service_cache_apptests", |
| 126 }, |
124 ] | 127 ] |
OLD | NEW |