Skip to content

Commit ab59a93

Browse files
committed
Re-enable test
1 parent 624b4b8 commit ab59a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ describe('lmdb-js', function () {
881881
should.equal(db2.doesExist(false, 3), true);
882882
should.equal(db2.doesExist(false, 4), false);
883883
});
884-
it.skip('should iterate over keys without duplicates', async function () {
884+
it('should iterate over keys without duplicates', async function () {
885885
let lastKey;
886886
for (let key of db2.getKeys({ start: 'k' })) {
887887
if (key == lastKey) throw new Error('duplicate key returned');

0 commit comments

Comments
 (0)