Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable skipped windows tests #174

Merged
merged 1 commit into from
Nov 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"detect-node": "^2.0.3",
"eslint-config-standard-jsx": "^4.0.2",
"go-ipfs-dep": "0.4.11",
"ipfs-api": "^14.3.5",
"ipfs-api": "^15.1.0",
"multiaddr": "^3.0.1",
"once": "^1.4.0",
"rimraf": "^2.6.2",
Expand Down
8 changes: 0 additions & 8 deletions test/spawning-daemons.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ const exec = require('../src/exec')
const ipfsd = require('../src')

const isWindows = os.platform() === 'win32'

describe('daemon spawning', function () {
this.timeout(60 * 1000)

Expand Down Expand Up @@ -334,13 +333,6 @@ describe('daemon spawning', function () {
})
})

// skip on windows for now
// https://github.com/ipfs/js-ipfsd-ctl/pull/155#issuecomment-326970190
// fails on windows see https://github.com/ipfs/js-ipfs-api/issues/408
if (isWindows) {
return it.skip('uses the correct ipfs-api')
}

it('uses the correct ipfs-api', (done) => {
ipfs.util.addFromFs(path.join(__dirname, 'fixtures/'), {
recursive: true
Expand Down