Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Chore/lead maintainer #42

Merged
merged 2 commits into from
Nov 29, 2018
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
**/node_modules/
**/*.log
test/repo-tests*
package-lock.json

# Logs
logs
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ The purpose of this interface is not to reinvent any wheels when it comes to dia

The API is presented with both Node.js and Go primitives, however, there are no actual limitations for it to be extended for any other language, pushing forward the cross compatibility and interop through diferent stacks.

## Lead Maintainer

[Jacob Heun](https://github.com/jacobheun/)

# Modules that implement the interface

- [js-libp2p-tcp](https://github.com/libp2p/js-libp2p-tcp)
Expand Down
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
"name": "interface-transport",
"version": "0.3.6",
"description": "A test suite and interface you can use to implement a transport.",
"leadMaintainer": "Jacob Heun <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/libp2p/interface-transport.git"
},
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "aegir lint",
"test": "aegir test",
Expand All @@ -18,28 +22,26 @@
"coverage-publish": "exit(0)"
},
"pre-commit": [
"lint",
"test"
"lint"
],
"keywords": [
"IPFS"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/interface-transport/issues"
},
"homepage": "https://github.com/libp2p/interface-transport",
"devDependencies": {
"aegir": "^13.0.6",
"aegir": "^17.0.1",
"dirty-chai": "^2.0.1"
},
"dependencies": {
"chai": "^4.1.2",
"multiaddr": "^4.0.0",
"pull-goodbye": "0.0.2",
"pull-serializer": "^0.3.2",
"pull-stream": "^3.6.7"
"chai": "^4.2.0",
"multiaddr": "^5.0.2",
"pull-goodbye": "~0.0.2",
"pull-serializer": "~0.3.2",
"pull-stream": "^3.6.9"
},
"contributors": [
"David Dias <[email protected]>",
Expand Down
2 changes: 2 additions & 0 deletions src/listen-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ module.exports = (common) => {
})

describe('events', () => {
// eslint-disable-next-line
// TODO: figure out why it fails in the full test suite
it.skip('connection', (done) => {
const finish = plan(2, done)
Expand All @@ -89,6 +90,7 @@ module.exports = (common) => {
listener.listen(addrs[0])
})

// eslint-disable-next-line
// TODO: how to get the listener to emit an error?
it.skip('error', (done) => {
const listener = transport.createListener()
Expand Down