Mystik
#1
Hi!
Do you uses any specific frameworks to automate your tests with Playcanvas?
This question is related with this one: [SOLVED] How to run Playcanvas tests
Thank you for your help.
will
#2
The PlayCanvas engine tests are run using Karma. See the engine’s package.json file:
So you can run them locally by doing:
npm run test
We use CircleCI to automatically run the unit tests on every commit.
The unit tests are built on mocha.
1 Like
Mystik
#3
Interesting. I will take a look.