()
| 7 | const assert = require('assert'); |
| 8 | |
| 9 | async function testYield() { |
| 10 | await scheduler.yield(); |
| 11 | process.emit('foo'); |
| 12 | } |
| 13 | testYield().then(common.mustCall()); |
| 14 | queueMicrotask(common.mustCall(() => { |
| 15 | process.addListener('foo', common.mustCall()); |
no test coverage detected