zanest app Implementation with electron.js
install node.js on your machine then in the repo directory run following 2 commands:
npm install
npm start
Mocha
is a testing framework for Node.js that gives you the flexibility to run asynchronous (or synchronous) code serially. Any uncaught exceptions are shown alongside the test case in which it was thrown, making it easy to identify exactly what failed and why.
To use Mocha, I'd suggest you install it globally with npm:
$ npm install mocha -g
We Use docker containers to create an independent and always clean environment for testing application.
docker installition Guide:
Congratulations! You have set up Docker on your system and now you can testing the application with the below command:
docker build -t tester . && docker run --rm -e ENVIRONMENT=test tester