File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ describe('lmdb-js', function () {
421421 let additive = 'this is more text' ;
422422 for ( let i = 0 ; i < 6 ; i ++ ) additive += additive ;
423423 let read_txn = db . useReadTransaction ( ) ;
424- for ( let i = 0 ; i < 5000 ; i ++ ) {
424+ for ( let i = 0 ; i < 500 ; i ++ ) {
425425 if ( Math . random ( ) < 0.3 ) {
426426 read_txn . done ( ) ;
427427 read_txn = db . useReadTransaction ( ) ;
@@ -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 ( 'should iterate over keys without duplicates' , async function ( ) {
884+ it . skip ( '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' ) ;
You can’t perform that action at this time.
0 commit comments