Hello, I tried to build your JS code using the npm command that I found on your Wiki page, but I got a small error because of the import ava module and the utils.js file
> zap-hud@1.0.0 test
> ava
Uncaught exception in src/test/js/utils.test.js
SyntaxError: Cannot use import statement outside a module
✖ src/test/js/utils.test.js exited with a non-zero exit code: 1
─
One uncaught exception
FAILURE: Build failed with an exception.
you should change the import command from import test from ava to const test = require('ava')
best regards
Khaled