(name, subtest)
| 8 | } |
| 9 | |
| 10 | run(name, subtest) { |
| 11 | this.result.push(["LOG", "===", name]); |
| 12 | this.context = ""; |
| 13 | subtest(); |
| 14 | this.context = ""; |
| 15 | } |
| 16 | |
| 17 | // setContext arranges to add name(args) to all messages added |
| 18 | // until the next setContext or run call. |