[SOLVED] JavaScript Testing Frameworks with PlayCanvas?

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.

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

Interesting. I will take a look.