(name, run)
| 291 | function Failure(why) {this.message = why;} |
| 292 | |
| 293 | function test(name, run) {tests.push({name: name, func: run});} |
| 294 | function testCM(name, run, opts) { |
| 295 | test(name, function() { |
| 296 | var place = document.getElementById("testground"), cm = CodeMirror(place, opts); |
no outgoing calls
no test coverage detected