So I think I found the problem.
The test does not pass if the the page does not move on link click.
Solution is too make at least one section so big that clicking on a link will move the page.
I think test is bugged.
Below code test 7 passes.
<style>
section { height: 100vh; }
</style>
<body>
<nav id="navbar">
<a href="#about">about</a>
<a href="#about">projects</a>
</nav>
<main>
<section id="about">
Test
</section>
<section id="projects">
Test
</section>
</main>
</body>