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
I'm working on porting this library to GDScript and need to run the tests to ensure that I don't break anything when porting. I see the unit_tests.ts file, but I'm not sure how to run it. In package.json the test script is "test": "echo \"Error: no test specified\" && exit 1".
The text was updated successfully, but these errors were encountered:
I just copy and paste the test code into the console and run it manually. I don't know what procedures people use for automated unit tests in Javascriptland, sorry. Can make a pull request if you have a preference.
I just copy and paste the test code into the console and run it manually. I don't know what procedures people use for automated unit tests in Javascriptland, sorry. Can make a pull request if you have a preference.
Node has a builtin module for just that now. Then you can just automate running the tests via github actions if you want.
I'm working on porting this library to GDScript and need to run the tests to ensure that I don't break anything when porting. I see the
unit_tests.ts
file, but I'm not sure how to run it. Inpackage.json
the test script is"test": "echo \"Error: no test specified\" && exit 1"
.The text was updated successfully, but these errors were encountered: