Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do we need to do cross browser testing of React application

I am testing a web application with front end developed in ReactJS. React components will behave exactly same for a given set of properties. So I am wondering, is it worth doing cross browser testing of such app?

like image 961
Nikhil K R Avatar asked Dec 02 '17 20:12

Nikhil K R


1 Answers

See Browser Support in the React docs. I think you can be reasonably confident that the React team has done cross browser testing on React itself, for the browsers they support. However, it does require polyfills in older browsers.

And, you will be writing your own HTML/CSS code as part of your application. You should be testing that code if you have concerns about cross browser support.

like image 51
bluesixty Avatar answered Nov 15 '22 12:11

bluesixty