()
| 72 | let testIndex = 0; |
| 73 | |
| 74 | function testNext() { |
| 75 | if (testIndex >= unaryOperators.length) { |
| 76 | replServer.close(); |
| 77 | done(); |
| 78 | return; |
| 79 | } |
| 80 | |
| 81 | const testCase = unaryOperators[testIndex++]; |
| 82 | replServer.complete( |
| 83 | testCase, |
| 84 | common.mustSucceed((completions) => { |
| 85 | assert.strictEqual(completions[1], 'globalThis'); |
| 86 | testNext(); |
| 87 | }) |
| 88 | ); |
| 89 | } |
| 90 | |
| 91 | testNext(); |
| 92 | }); |
no test coverage detected