Remove `wrapper = null` from Vue component tests
A follow-up from the comment:
nitpick: do we still need
wrapper = nullhere?
We regularly write wrapper = null in our component tests, which is in fact unnecessary, since Vue Test Utils will warn you on trying to access destroyed wrapper. We need to remove that bit of a code from tests to avoid confusion.