myDecimal y myDecimal un valor decimal con una parte fraccionaria (por ejemplo, 5.7 ). myDecimal debe ser un número.
    testString: 'assert(typeof myDecimal === "number", "myDecimal should be a number.");'
  - text: myDecimal debería tener un punto decimal
    testString: 'assert(myDecimal % 1 != 0, "myDecimal should have a decimal point"); '
```