Open alexanderpavlovets opened 6 years ago
Please use common code conventions for variable/methods/class/ect. names.
It is much more easier for other people (your colleagues/contributors maybe) to understand your code, for example: Instead of
expect(await Intersec(ganresoffilm,ganresofsimilarfilm)).not.to.be.empty
Try to use CamelCase
expect(await Intersec(ganresOfFilm,ganresOfSimilarFilm)).not.to.be.empty
For information: https://www.w3schools.com/js/js_conventions.asp
понял, исправил
Please use common code conventions for variable/methods/class/ect. names.
It is much more easier for other people (your colleagues/contributors maybe) to understand your code, for example: Instead of
Try to use CamelCase
For information: https://www.w3schools.com/js/js_conventions.asp