File tree Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 53
53
"async" : " ^2.6.0" ,
54
54
"detect-node" : " ^2.0.3" ,
55
55
"go-ipfs-dep" : " 0.4.11" ,
56
- "ipfs-api" : " ^17.1.1 " ,
56
+ "ipfs-api" : " ^14.3.5 " ,
57
57
"multiaddr" : " ^3.0.1" ,
58
58
"once" : " ^1.4.0" ,
59
59
"rimraf" : " ^2.6.2" ,
62
62
"truthy" : " 0.0.1"
63
63
},
64
64
"devDependencies" : {
65
- "aegir" : " ^12.2.0 " ,
65
+ "aegir" : " ^12.1.3 " ,
66
66
"chai" : " ^4.1.2" ,
67
67
"dirty-chai" : " ^2.0.1" ,
68
68
"ipfs" : " ^0.26.0" ,
69
69
"is-running" : " 1.0.5" ,
70
70
"mkdirp" : " ^0.5.1" ,
71
- "multihashes" : " ~0.4.12 " ,
71
+ "multihashes" : " ~0.4.10 " ,
72
72
"pre-commit" : " ^1.2.2" ,
73
73
"safe-buffer" : " ^5.1.1"
74
74
},
Original file line number Diff line number Diff line change 2
2
/* eslint-env mocha */
3
3
'use strict'
4
4
5
- const expect = require ( 'chai' ) . expect
5
+ const chai = require ( 'chai' )
6
+ const dirtyChai = require ( 'dirty-chai' )
7
+ const expect = chai . expect
8
+ chai . use ( dirtyChai )
9
+
6
10
const isrunning = require ( 'is-running' )
7
11
const cp = require ( 'child_process' )
8
12
const path = require ( 'path' )
@@ -57,7 +61,7 @@ function makeCheck (n, done) {
57
61
// exiting as it once was when the test was designed
58
62
// - [ ] Need test vector or figure out why tail changed
59
63
// Ref: https://github.com/ipfs/js-ipfsd-ctl/pull/160#issuecomment-325669206
60
- describe . skip ( 'exec' , ( ) => {
64
+ describe ( 'exec' , ( ) => {
61
65
it ( 'SIGTERM kills hang' , ( done ) => {
62
66
const tok = token ( )
63
67
Original file line number Diff line number Diff line change @@ -343,13 +343,6 @@ module.exports = () => {
343
343
} )
344
344
} )
345
345
346
- // skip on windows for now
347
- // https://github.com/ipfs/js-ipfsd-ctl/pull/155#issuecomment-326970190
348
- // fails on windows see https://github.com/ipfs/js-ipfs-api/issues/408
349
- if ( isWindows ) {
350
- return it . skip ( 'uses the correct ipfs-api' )
351
- }
352
-
353
346
it ( 'uses the correct ipfs-api' , ( done ) => {
354
347
ipfs . util . addFromFs ( path . join ( __dirname , 'fixtures/' ) , {
355
348
recursive : true
You can’t perform that action at this time.
0 commit comments