Timeout in Sass exercises

Tell us what’s happening:

Tests not running and still in timeout. What is happening ? It’s very frequent i the Sass exercises. Is it a bug?

Your code so far


<style type='text/scss'>

$x: 1;
@while $x < 6 {
.text-#{$x} { font-size: 15px * $x;}
}


</style>

<p class="text-1">Hello</p>
<p class="text-2">Hello</p>
<p class="text-3">Hello</p>
<p class="text-4">Hello</p>
<p class="text-5">Hello</p>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36.

Challenge: Apply a Style Until a Condition is Met with @while

Link to the challenge:

where are you changing the value of $x?

Yeah. Sorry I realized I forgot to put
$x: $x + 1;
on the last line. And it passed.