Test run not working

Good evening,
I am working on a lesson and it now will not run the test code. I do not understand what has happened. I was working in Microsoft Edge, then changed browsers because I saw that some people were having trouble with coding itself. That is not the issue that I am having. I put in my code and click the test button and nothing is happening.
HELP!!!

Can you please provide a link to the challenge and the code you are trying?

can you give the code you are using?

Just to be clear, the code you are doing is saved in the browser memory on your computer so we can’t see it. If you want to share it, you have to cut and paste it into a message. There can be formatting issues - below are instructions on how to get it to format correctly:


When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

@mixin border-radius($radius){
  -webkit-border-radius: $radius;
  -moz-border-radius: $radius;
  -ms-border-radius: $radius;
  border-radius: $radius;
}


  #awesome {
    width: 150px;
    height: 150px;
    background-color: green;
@include border-radius mixin:(15px $radius);
  }

It isn’t the code that I am worried about, although there may be a mistake, I am worried about not being able to run the test to find out if I did this correctly.

Can you try to explain more clearly what you are unable to do? For eg. Can you see the run button? Are you able to click it? What are you expecting to happen when you click it that is not happening? (Or that is unexpected)?

The problem was that when I entered the code and go to hit the test code button, it doesn’t do anything.
I am able to click it, but it does nothing. I was finally able to get this taken care of.
Thank you!

On my browser window, I see this:

Do you not see that?

Can you share what you found so others can learn?

Yes and when I clicked on the “run the test” button, it didn’t do anything.

I was able to get past this.

Thank you!

This was the part I was hoping you’d explain. Someone may encounter the same issue and search the forum. We try to help each other here.

You should be getting a syntax error with the code you posted. The error will prevent the tests from running.

@include border-radius mixin:(15px $radius);

Should be:

@include border-radius(15px);

I entered the code incorrectly. I needed to change a part of it. Because the code was incorrect, the test would not run. This was the first time that this happened to me, so I didn’t know that this was a possibility.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.