On the first run of your autorun, your reactiveVar is not accessed, so the the dependency is never established, meaning the autorun never re-runs. Change your code so reactiveVar is accessed before the test:
Tracker.autorun(computation => {
const x = reactiveVar.get(); // establishes dependency.
if (!computation.firstRun) {
console.log(x);
}
});