You can run a development server with instant compiling and hot module replacement with the start
command.
npm start
There are 2 scripts for running tests. CI tools will use the one of test runner with npm run test
While developing it's possible to run the tests with the watch flag. This will also report the coverage and rerun the tests on change.
npm run test-watch
npm run build