0.0.3 • Published 12 years ago
katar-db-test v0.0.3
Katar Db Test Suite
Test suite for testing data adapters for katar.
The test suite uses the main property in package.json to import the data adapter.
Usage
Install dependencies
npm install mocha -gInstall the test suite using:
npm install katar-db-test --save-devAdd a test command in your data adapter's package.json. Example scripts section from katar-memorydb is shown below:
"scripts": {
"test": "mocha --harmony --bail --timeout 5000 ./node_modules/katar-db-test"
}If the data adapter requires an options object to initialise, add this in package.json like shown below:
"custom": {
"testOptions": "localhost/db"
}Run tests using
npm testChangelog
v0.0.3
- Updated readme - added details on how to add adapter options to be used by the test suite when initialising the adapter
v0.0.2
- Updated readme
v0.0.1 - Alpha
- Initial release