What is the difference between client and server testing when performing various tests?

in my question, I wonder what differences exist when we run tests for the client side, compared to running tests on the client side?

For example, client side javascript testing and server side code checking?

+3
source share
1 answer

When you check the code on the server side, you check the logic and availability of your application. When you test Web Side code, you do end-to-end testing.

, , , , . , , . .

- , script .

+1

Source: https://habr.com/ru/post/1740428/


All Articles