()
| 13 | } |
| 14 | |
| 15 | async function testNoSessionNoCrash() { |
| 16 | console.log('Test there\'s no crash stopping server without connecting'); |
| 17 | const instance = new NodeInstance('--inspect=0', |
| 18 | 'process._debugEnd();process.exit(42);'); |
| 19 | assert.strictEqual((await instance.expectShutdown()).exitCode, 42); |
| 20 | } |
| 21 | |
| 22 | async function testSessionNoCrash() { |
| 23 | console.log('Test there\'s no crash stopping server after connecting'); |
no test coverage detected