We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f3a351 commit b1c3561Copy full SHA for b1c3561
test/constants.test.js
@@ -6,7 +6,10 @@ describe('constants', function() {
6
assert.ok(sqlite3.OPEN_READONLY === 1);
7
assert.ok(sqlite3.OPEN_READWRITE === 2);
8
assert.ok(sqlite3.OPEN_CREATE === 4);
9
+ assert.ok(sqlite3.OPEN_URI === 0x00000040);
10
assert.ok(sqlite3.OPEN_FULLMUTEX === 0x00010000);
11
+ assert.ok(sqlite3.OPEN_SHAREDCACHE === 0x00020000);
12
+ assert.ok(sqlite3.OPEN_PRIVATECACHE === 0x00040000);
13
});
14
15
it('should have the right error flags', function() {
0 commit comments