Skip to content

Commit eceaea3

Browse files
committed
fix: bring latest changes from master
1 parent 9e2539f commit eceaea3

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"async": "^2.6.0",
5454
"detect-node": "^2.0.3",
5555
"go-ipfs-dep": "0.4.11",
56-
"ipfs-api": "^17.1.1",
56+
"ipfs-api": "^14.3.5",
5757
"multiaddr": "^3.0.1",
5858
"once": "^1.4.0",
5959
"rimraf": "^2.6.2",
@@ -62,13 +62,13 @@
6262
"truthy": "0.0.1"
6363
},
6464
"devDependencies": {
65-
"aegir": "^12.2.0",
65+
"aegir": "^12.1.3",
6666
"chai": "^4.1.2",
6767
"dirty-chai": "^2.0.1",
6868
"ipfs": "^0.26.0",
6969
"is-running": "1.0.5",
7070
"mkdirp": "^0.5.1",
71-
"multihashes": "~0.4.12",
71+
"multihashes": "~0.4.10",
7272
"pre-commit": "^1.2.2",
7373
"safe-buffer": "^5.1.1"
7474
},

test/exec.spec.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
/* eslint-env mocha */
33
'use strict'
44

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+
610
const isrunning = require('is-running')
711
const cp = require('child_process')
812
const path = require('path')
@@ -57,7 +61,7 @@ function makeCheck (n, done) {
5761
// exiting as it once was when the test was designed
5862
// - [ ] Need test vector or figure out why tail changed
5963
// Ref: https://github.com/ipfs/js-ipfsd-ctl/pull/160#issuecomment-325669206
60-
describe.skip('exec', () => {
64+
describe('exec', () => {
6165
it('SIGTERM kills hang', (done) => {
6266
const tok = token()
6367

test/spawning-daemons.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -343,13 +343,6 @@ module.exports = () => {
343343
})
344344
})
345345

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-
353346
it('uses the correct ipfs-api', (done) => {
354347
ipfs.util.addFromFs(path.join(__dirname, 'fixtures/'), {
355348
recursive: true

0 commit comments

Comments
 (0)