Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
1 answer
1k views

React Application Unit Testing

I am currently testing a React app using Selenium for Functional Testing. Selenium is used to launch the app on the browser, and simulate user actions and keep asserting/verifying at each step. ...
Gloria Rampur's user avatar
0 votes
1 answer
852 views

Test Javascript function which dont return a value in Qunit

Suppose I have a function function f_createScriptElement(f_url) { var script = d[CreateElement](Script); script.type = "text/javascript"; script[Src] = f_url; script....
Swaraj Chhatre's user avatar