User Story #8: If I enter non-numbers in the number input, I will see an HTML5 validation error.
User Story #9: If I enter numbers outside the range of the number input, which are defined by the min and max attributes, I will see an HTML5 validation error.
User Story #11: For the name, email, and number input fields, I can see placeholder text that gives me a description or instructions for each field.
Edit: Adding an explanation.
It was the preceeding passing test that was throwing you off. That one said “Inside the form, I can enter a number in a field with id=“number””
but where you had that id was not where you were inputting the number which is why the next tests failed.
I’ve been trying to fight this problem for two hours today and it turns out it was such a simple mistake.
I moved id and everything works now.
Than you Roma very much for help!