@@ -66,15 +66,15 @@ module.exports = (common, options) => {
66
66
expect ( cid ) . to . deep . equal ( fixtures . files [ 0 ] . cid )
67
67
} )
68
68
69
- it ( 'should add recursively' , async ( ) => {
69
+ it . skip ( 'should add recursively' , async ( ) => {
70
70
await ipfs . pin . add ( fixtures . directory . cid )
71
71
await expectPinned ( ipfs , fixtures . directory . cid , pinTypes . recursive )
72
72
73
73
const pinChecks = Object . values ( fixtures . directory . files ) . map ( file => expectPinned ( ipfs , file . cid ) )
74
74
return Promise . all ( pinChecks )
75
75
} )
76
76
77
- it ( 'should add directly' , async ( ) => {
77
+ it . skip ( 'should add directly' , async ( ) => {
78
78
await ipfs . pin . add ( fixtures . directory . cid , {
79
79
recursive : false
80
80
} )
@@ -83,7 +83,7 @@ module.exports = (common, options) => {
83
83
await expectNotPinned ( ipfs , fixtures . directory . files [ 0 ] . cid )
84
84
} )
85
85
86
- it ( 'should recursively pin parent of direct pin' , async ( ) => {
86
+ it . skip ( 'should recursively pin parent of direct pin' , async ( ) => {
87
87
await ipfs . pin . add ( fixtures . directory . files [ 0 ] . cid , {
88
88
recursive : false
89
89
} )
@@ -94,7 +94,7 @@ module.exports = (common, options) => {
94
94
await expectPinned ( ipfs , fixtures . directory . files [ 0 ] . cid , pinTypes . indirect )
95
95
} )
96
96
97
- it ( 'should fail to directly pin a recursive pin' , async ( ) => {
97
+ it . skip ( 'should fail to directly pin a recursive pin' , async ( ) => {
98
98
await ipfs . pin . add ( fixtures . directory . cid )
99
99
return expect ( ipfs . pin . add ( fixtures . directory . cid , {
100
100
recursive : false
0 commit comments