Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit 1be100b

Browse files
vasco-santosjacobheun
authored andcommittedApr 24, 2019
chore: enable ip6 tests (#85)
1 parent 83475bd commit 1be100b

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed
 

‎.travis.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,20 @@ stages:
88
node_js:
99
- '10'
1010

11-
os:
12-
- linux
13-
- osx
14-
1511
script: npx nyc -s npm run test:node -- --bail
1612
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
1713

1814
jobs:
1915
include:
16+
- os: linux
17+
sudo: false
18+
before_script: sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
19+
20+
- os: windows
21+
cache: false
22+
23+
- os: osx
24+
2025
- stage: check
2126
script:
2227
- npx aegir commitlint --travis

‎test/node.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,7 @@ describe('dial', () => {
253253
})
254254
})
255255

256-
// TODO: https://github.com/libp2p/js-libp2p-websockets/issues/84
257-
describe.skip('ip6', () => {
256+
describe('ip6', () => {
258257
let ws
259258
let listener
260259
const ma = multiaddr('/ip6/::1/tcp/9091')

0 commit comments

Comments
 (0)
This repository has been archived.