Unverified Commit 8b817e1e by Kewde Committed by GitHub

try removing sqlite3.SQLITE_OPEN_MEMORY

parent 20207784
...@@ -38,7 +38,7 @@ describe('open/close', function() { ...@@ -38,7 +38,7 @@ describe('open/close', function() {
var db; var db;
it('should open the database', function(done) { it('should open the database', function(done) {
db = new sqlite3.Database('test/tmp/test_create_shared.db',sqlite3.OPEN_SHAREDCACHE|sqlite3.SQLITE_OPEN_MEMORY, done); db = new sqlite3.Database('test/tmp/test_create_shared.db',sqlite3.OPEN_SHAREDCACHE, done);
}); });
it('should close the database', function(done) { it('should close the database', function(done) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment