Use Jasmine to Test Functions in Browser
Learn how to run Jasmine in the browser, set up a reporter for it, and use helpers.
Browser API
Up until now, we’ve been running Jasmine and the unit tests in a Node.js environment. That won’t be enough if we’re developing and maintaining a browser application.
Let’s say there’s a functionality in our app that relies on a browser API like requestAnimationFrame.
requestAnimationFrame(callback)
is a way to tell the browser, “Hey, when you’re ready with the DOM calculations but before you paint that, let me have a chance to run some JavaScript (the callback).”
In the following code playground, there’s an attempt to test such functionality. It’s the same Jasmine setup we’ve been using until now. Try running it.
Get hands-on with 1400+ tech skills courses.