Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
feat: test with new IPFS
Browse files Browse the repository at this point in the history
* chore: update all deps

* chore: remove pre-commit in favor of pre-push

* test: increase the timeout for CI

* test: increase the timeout for CI

* chore: revert timeout
  • Loading branch information
daviddias committed May 18, 2018
1 parent 2fbde7b commit 47ca31b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
31 changes: 15 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"test:node": "aegir test -t node -f test/node.js",
"test:browser": "aegir test -t browser --no-cors -f test/browser.js"
},
"pre-commit": [
"pre-push": [
"lint"
],
"repository": {
Expand All @@ -38,30 +38,29 @@
},
"homepage": "https://github.com/ipfs/interop#readme",
"devDependencies": {
"aegir": "^12.2.0",
"aegir": "^13.1.0",
"async": "^2.6.0",
"bl": "^1.2.1",
"bl": "^2.0.0",
"bs58": "^4.0.1",
"buffer-loader": "0.0.1",
"chai": "^4.1.2",
"cids": "^0.5.2",
"cids": "^0.5.3",
"detect-node": "^2.0.3",
"dir-compare": "^1.4.0",
"dirty-chai": "^2.0.1",
"eslint-plugin-react": "^7.5.1",
"expose-loader": "^0.7.4",
"form-data": "^2.3.1",
"go-ipfs-dep": "^0.4.13",
"eslint-plugin-react": "^7.8.2",
"expose-loader": "^0.7.5",
"form-data": "^2.3.2",
"go-ipfs-dep": "^0.4.15",
"hat": "0.0.3",
"ipfs": "~0.27.7",
"ipfs-api": "^18.1.1",
"ipfsd-ctl": "~0.29.1",
"left-pad": "^1.2.0",
"lodash": "^4.17.4",
"mocha": "^4.0.1",
"ipfs": "~0.28.2",
"ipfs-api": "^21.0.0",
"ipfsd-ctl": "~0.36.0",
"left-pad": "^1.3.0",
"lodash": "^4.17.10",
"mocha": "^5.1.1",
"ncp": "^2.0.0",
"pre-commit": "^1.2.2",
"pretty-bytes": "^4.0.2",
"pretty-bytes": "^5.0.0",
"random-fs": "^1.0.3",
"rimraf": "^2.6.2",
"stream-to-promise": "^2.2.0",
Expand Down
2 changes: 1 addition & 1 deletion test/pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const DaemonFactory = require('ipfsd-ctl')
* Wait for a condition to become true. When its true, callback is called.
*/
function waitFor (predicate, callback) {
const ttl = Date.now() + (2 * 1000)
const ttl = Date.now() + (10 * 1000)
const self = setInterval(() => {
if (predicate()) {
clearInterval(self)
Expand Down

0 comments on commit 47ca31b

Please sign in to comment.