OLD | NEW |
1 { | 1 { |
2 "name": "JSTests", | 2 "name": "JSTests", |
3 "run_count": 5, | 3 "run_count": 5, |
4 "run_count_android_arm": 3, | 4 "run_count_android_arm": 3, |
5 "run_count_android_arm64": 3, | 5 "run_count_android_arm64": 3, |
6 "timeout": 120, | 6 "timeout": 120, |
7 "units": "score", | 7 "units": "score", |
8 "total": true, | 8 "total": true, |
9 "resources": ["base.js"], | 9 "resources": ["base.js"], |
10 "tests": [ | 10 "tests": [ |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 }, | 128 }, |
129 { | 129 { |
130 "name": "Exceptions", | 130 "name": "Exceptions", |
131 "path": ["Exceptions"], | 131 "path": ["Exceptions"], |
132 "main": "run.js", | 132 "main": "run.js", |
133 "resources": ["try-catch.js"], | 133 "resources": ["try-catch.js"], |
134 "results_regexp": "^%s\\-Exceptions\\(Score\\): (.+)$", | 134 "results_regexp": "^%s\\-Exceptions\\(Score\\): (.+)$", |
135 "tests": [ | 135 "tests": [ |
136 {"name": "Try-Catch"} | 136 {"name": "Try-Catch"} |
137 ] | 137 ] |
| 138 }, |
| 139 { |
| 140 "name": "Keys", |
| 141 "path": ["Keys"], |
| 142 "main": "run.js", |
| 143 "resources": ["keys.js"], |
| 144 "results_regexp": "^%s\\-Keys\\(Score\\): (.+)$", |
| 145 "tests": [ |
| 146 {"name": "Object.keys()"}, |
| 147 {"name": "for (in)"}, |
| 148 {"name": "for (in) hasOwnProperty()"}, |
| 149 {"name": "for Object.keys()"}, |
| 150 {"name": "Object.keys().forEach()"}, |
| 151 {"name": "for (i < array.length)"}, |
| 152 {"name": "for (i < length)"} |
| 153 ] |
138 } | 154 } |
139 ] | 155 ] |
140 } | 156 } |
OLD | NEW |