diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a9bf486 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +test: + @echo "Launching tests" + @ ./node_modules/.bin/mocha --timeout 2000 --reporter spec + @echo "Tests finished" + +.PHONY: test + diff --git a/test/db.test.js b/test/db.test.js new file mode 100644 index 0000000..cf4631d --- /dev/null +++ b/test/db.test.js @@ -0,0 +1,12 @@ +var db = require('../lib/datastore') + , testDb = 'workspace/test.db' + ; + + +describe('Database', function () { + + it('Dummy', function (done) { + done(); + }); + +});