File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/interface-blockstore-tests/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ module.exports = (test) => {
282
282
expect ( res ) . to . be . eql ( [ false , true , true , true ] )
283
283
} )
284
284
285
- it ( 'many (1200)' , async function ( ) {
285
+ it . skip ( 'many (1200)' , async function ( ) {
286
286
this . timeout ( 20 * 1000 )
287
287
const b = store . batch ( )
288
288
const count = 1200
@@ -297,7 +297,7 @@ module.exports = (test) => {
297
297
298
298
b . put ( key , value )
299
299
300
- const prefix = key . toString ( ) . substr ( 0 , 3 )
300
+ const prefix = key . toString ( ) . toUpperCase ( ) . substr ( 1 , 8 )
301
301
302
302
prefixes [ prefix ] = ( prefixes [ prefix ] || 0 ) + 1
303
303
}
@@ -313,7 +313,7 @@ module.exports = (test) => {
313
313
} )
314
314
} )
315
315
316
- describe ( 'query' , ( ) => {
316
+ describe . skip ( 'query' , ( ) => {
317
317
/** @type {Blockstore } */
318
318
let store
319
319
/** @type {Pair } */
@@ -461,7 +461,7 @@ module.exports = (test) => {
461
461
} )
462
462
} )
463
463
464
- describe ( 'queryKeys' , ( ) => {
464
+ describe . skip ( 'queryKeys' , ( ) => {
465
465
/** @type {Blockstore } */
466
466
let store
467
467
/** @type {Pair } */
You can’t perform that action at this time.
0 commit comments