-
Notifications
You must be signed in to change notification settings - Fork 62
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
feat: add keysize through an option to spawn #203
Changes from 1 commit
2595fc4
718e0ce
c9c25da
c3fca62
55142c5
17d578e
f5f400e
ee74427
b167a3c
ac70cda
6c7a028
2ca9aa1
1351dde
fb30e0e
174e9dc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ const fs = require('fs') | |
const path = require('path') | ||
const os = require('os') | ||
const isrunning = require('is-running') | ||
const JSIPFS = require('ipfs') | ||
|
||
const isWindows = os.platform() === 'win32' | ||
const findIpfsExecutable = require('../src/utils/find-ipfs-executable') | ||
|
@@ -212,6 +211,9 @@ types.forEach((type) => { | |
}) | ||
|
||
describe('start and stop multiple times', () => { | ||
// TODO: wont work on windows until we get /shutdown implemented in js-ipfs | ||
if (isWindows) { return } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use this.skip() There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Skip doesn't work inside There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dryajov can we put that inside every it block then? It signals the viewer that something is not complete. |
||
|
||
let ipfsd | ||
|
||
before(function (done) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's now working, see PR #205
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice... is it ready to review and merge?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need to wait for js-ipfs to get released?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nvm - ipfs/js-ipfs#1224
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
waiting for a review by @diasdavid
My PR has a link to js-ipfs/master (not using npm) so it can be used immediately.