Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try removing sqlite3.SQLITE_OPEN_MEMORY
  • Loading branch information
kewde authored Dec 5, 2018
commit 8b817e1e813c1b60bf5addaf6f67345750a4b5d6
2 changes: 1 addition & 1 deletion test/open_close.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('open/close', function() {

var db;
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) {
Expand Down