```js const x = new stream.Duplex({ readable: false, _write () {} }) x.destroy() assert(!x.readableAborted) ``` We are missing a check in `readableAborted` getter regarding whether the `Duplex` is readable at all.