Skip to content

Commit

Permalink
Add test for OPEN_FULLMUTEX (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
davedoesdev authored and wmertens committed Dec 30, 2017
1 parent 3a2a823 commit c4b4f65
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/constants.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ describe('constants', function() {
assert.ok(sqlite3.OPEN_READONLY === 1);
assert.ok(sqlite3.OPEN_READWRITE === 2);
assert.ok(sqlite3.OPEN_CREATE === 4);
assert.ok(sqlite3.OPEN_FULLMUTEX === 0x00010000);
});

it('should have the right error flags', function() {
Expand Down

0 comments on commit c4b4f65

Please sign in to comment.