Application for Liquid Organizations, using Node.js/Express/MongoDB.
Clone the repository and install dependencies:
git clone [email protected]:liquid-co-ops/liqueed.git
cd liqueed
npm install
Run the tests with:
npm test
If you have a MongoDB instance running, the database tests are:
simpleunit ./testdb
Run
npm start
Then browse to http://localhost:3000/
Install istanbul
globally:
npm install -g istanbul
Run the tests with:
istanbul cover node_modules/simpleunit/bin/simpleunit -- ./test ./testserver
If you have MongoDB running, run the tests:
istanbul cover node_modules/simpleunit/bin/simpleunit -- ./test ./testserver ./testdb
The reports is at coverage/lcov-report/index.html
.