You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE - default tests ubuntu. so will fail on window when terminal test runs. comment out locally if that's the case
or to test a single function:
python -m unittest tests.test_javascript.TestCase.test_javascript_array
python -m unittest tests.test_dQuery.TestCase.test_addClass
python -m unittest tests.test_geom.TestCase.test_vec2
python3 -m unittest tests.test_cmd.TestCase.test_cmd_dir # only windows
or to test a whole module:
python -m unittest tests.test_html
python -m unittest tests.test_CDN
to see coverage:
coverage run -m unittest discover tests/
coverage report
If you want to get involved then create an assertion in a unit test for any given method. some are still just print statements at the moment.
this may also uncover bugs. so be prepared.
or create a new unit test for a method that isn't done yet and make it work. good luck
The text was updated successfully, but these errors were encountered: