Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 672 Bytes

README.md

File metadata and controls

33 lines (29 loc) · 672 Bytes

agendor

Agendor app on Pluga

Install Node.js with nvm

nvm install v8.10
nvm use 8.10
npm install

Test with mocha

npm test

Test with mocha debug in command line

How to:

  • Write "debugger;" in test file to create a new breakpoint;
  • Press "c" to start test;
  • Type "repl" when break to enter current scope;
  • Now do debug in command line :);
  • Press "Ctrl + C" to exit repl;
  • Press "c" to start or continue;
  • Type ".exit" to finish test.
npm run debug

Axios debug request

AXIOS_DEBUG=1 npm test
AXIOS_DEBUG=1 npm run debug