ucd-library / csus-sp-2018-app

MIT License
1 stars 1 forks source link

Mocha unit test #34

Closed ehsankhaligh closed 5 years ago

ehsankhaligh commented 5 years ago

1) installed the mocha and chai for unit testing. 2) created a test folder to add all of our unit tests. 3) added "test": "mocha" in package.json to be able to run tests using 'npm test' "scripts": { "start": "node server.js", "test": "mocha" },

DerekMaggio commented 5 years ago

You have a merge conflict on tesseract_model. We can resolve that tomorrow. You should be able to rebase to master and I believe that it will fix it.

DerekMaggio commented 5 years ago

Was there any reason that you chose the should api of chai over assert or except?