@@ -44,7 +44,7 @@ tests.forEach((fOpts) => {
44
44
init : true ,
45
45
start : false ,
46
46
disposable : true ,
47
- initOptions : { bits : fOpts . bits }
47
+ initOptions : { bits : fOpts . bits , profile : 'test' }
48
48
} , ( err , _ipfsd ) => {
49
49
expect ( err ) . to . not . exist ( )
50
50
expect ( _ipfsd ) . to . exist ( )
@@ -135,7 +135,7 @@ tests.forEach((fOpts) => {
135
135
136
136
df . spawn ( {
137
137
start : false ,
138
- initOptions : { bits : fOpts . bits }
138
+ initOptions : { bits : fOpts . bits , profile : 'test' }
139
139
} , ( err , ipfsd ) => {
140
140
expect ( err ) . to . not . exist ( )
141
141
ipfsd . start ( [ '--should-not-exist' ] , ( err ) => {
@@ -165,7 +165,7 @@ tests.forEach((fOpts) => {
165
165
init : true ,
166
166
start : false ,
167
167
disposable : true ,
168
- initOptions : { bits : fOpts . bits }
168
+ initOptions : { bits : fOpts . bits , profile : 'test' }
169
169
} , ( err , _ipfsd ) => {
170
170
expect ( err ) . to . not . exist ( )
171
171
expect ( _ipfsd ) . to . exist ( )
@@ -247,7 +247,7 @@ tests.forEach((fOpts) => {
247
247
248
248
df . spawn ( {
249
249
start : false ,
250
- initOptions : { bits : fOpts . bits }
250
+ initOptions : { bits : fOpts . bits , profile : 'test' }
251
251
} , ( err , ipfsd ) => {
252
252
expect ( err ) . to . not . exist ( )
253
253
ipfsd . start ( [ '--should-not-exist' ] , ( err ) => {
@@ -270,7 +270,7 @@ tests.forEach((fOpts) => {
270
270
271
271
df . spawn ( {
272
272
exec,
273
- initOptions : { bits : fOpts . bits }
273
+ initOptions : { bits : fOpts . bits , profile : 'test' }
274
274
} , ( err , daemon ) => {
275
275
expect ( err ) . to . not . exist ( )
276
276
expect ( daemon ) . to . exist ( )
@@ -302,7 +302,7 @@ tests.forEach((fOpts) => {
302
302
process . env = Object . assign ( { } , process . env , fOpts . type === 'go'
303
303
? { IPFS_GO_EXEC : exec } : { IPFS_JS_EXEC : exec } )
304
304
df . spawn ( {
305
- initOptions : { bits : fOpts . bits }
305
+ initOptions : { bits : fOpts . bits , profile : 'test' }
306
306
} , ( err , daemon ) => {
307
307
expect ( err ) . to . not . exist ( )
308
308
expect ( daemon ) . to . exist ( )
@@ -335,7 +335,7 @@ tests.forEach((fOpts) => {
335
335
336
336
df . spawn ( {
337
337
exec,
338
- initOptions : { bits : fOpts . bits }
338
+ initOptions : { bits : fOpts . bits , profile : 'test' }
339
339
} , ( err , daemon ) => {
340
340
expect ( err ) . to . not . exist ( )
341
341
expect ( daemon ) . to . exist ( )
@@ -356,7 +356,7 @@ tests.forEach((fOpts) => {
356
356
357
357
const df = IPFSFactory . create ( dfConfig )
358
358
df . spawn ( {
359
- initOptions : { bits : fOpts . bits } ,
359
+ initOptions : { bits : fOpts . bits , profile : 'test' } ,
360
360
repoPath : ipfsd . repoPath ,
361
361
disposable : false
362
362
} , ( err , daemon ) => {
@@ -383,7 +383,7 @@ tests.forEach((fOpts) => {
383
383
init : false ,
384
384
start : false ,
385
385
exec : exec ,
386
- initOptions : { bits : fOpts . bits }
386
+ initOptions : { bits : fOpts . bits , profile : 'test' }
387
387
} , ( err , daemon ) => {
388
388
expect ( err ) . to . not . exist ( )
389
389
expect ( daemon ) . to . exist ( )
@@ -418,7 +418,7 @@ tests.forEach((fOpts) => {
418
418
start : false ,
419
419
disposable : false ,
420
420
repoPath : tempDir ( fOpts . type ) ,
421
- initOptions : { bits : fOpts . bits } ,
421
+ initOptions : { bits : fOpts . bits , profile : 'test' } ,
422
422
config : {
423
423
Addresses : {
424
424
Swarm : [ `/ip4/127.0.0.1/tcp/0` ] ,
0 commit comments