(name, test)
| 98 | } |
| 99 | |
| 100 | function it(name, test) { |
| 101 | var fullName = description.join(' > ') + ' ' + name; |
| 102 | ( |
| 103 | tests[fullName] || |
| 104 | (tests[fullName] = { |
| 105 | description: fullName, |
| 106 | tests: [], |
| 107 | }) |
| 108 | ).tests[version] = { |
| 109 | before: beforeFn, |
| 110 | test: test, |
| 111 | }; |
| 112 | } |
| 113 | |
| 114 | vm.runInNewContext( |
| 115 | source.source, |
no test coverage detected