Javascript Calculator in React failing clear text

Tell us what’s happening:
My code is failing test #7 and #8 (which are worded exactly the same, which is bizarre in itself). The test failure does not provide me with any useful info:

Script error. (:0)
Error: Script error. (:0)
    at a.onerror (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:593:1177)
    at https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:657:113627
    at Array.forEach (<anonymous>)
    at ae (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:657:113573)
    at a.<anonymous> (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:657:186626)
    at https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:598:38668
    at i.g.run (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:598:38963)
    at N.runTest (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:598:45686)
    at https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:598:46651
    at o (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:598:45075)

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36.

Challenge: Build a JavaScript Calculator

Link to the challenge:

Line 60 this.evaluate(); - where is this function defined?

um, it wasn’t defined yet because I was working through the tests one by one. I guess I shouldn’t have written that or at least created a stub function because that fixed the issue, thanks!