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

ci: enable webkit tests in interop and webRTC #2541

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
27 changes: 16 additions & 11 deletions interop/webkit-version.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"id": "webkit-js-libp2p-head",
"containerImageID": "webkit-js-libp2p-head",
"transports": [],
"secureChannels": [
"noise"
],
"muxers": [
"mplex",
"yamux"
]
}
"id": "webkit-js-libp2p-head",
"containerImageID": "webkit-js-libp2p-head",
"transports": [
{
"name": "webrtc-direct",
"onlyDial": true
},
"webrtc",
{
"name": "wss",
"onlyDial": true
}
],
"secureChannels": ["noise"],
"muxers": ["mplex", "yamux"]
}
1 change: 1 addition & 0 deletions packages/transport-webrtc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"test:node": "aegir test -t node --cov",
"test:chrome": "aegir test -t browser --cov",
"test:firefox": "aegir test -t browser -- --browser firefox",
"test:webkit": "aegir test -t browser -- --browser webkit",
"lint": "aegir lint",
"lint:fix": "aegir lint --fix",
"clean": "aegir clean",
Expand Down
Loading