Skip to content

Commit b274a64

Browse files
committed
net: add more ipv6 cases
1 parent b969a35 commit b274a64

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

test/parallel/test-socketaddress.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ describe('net.SocketAddress...', () => {
151151
{ input: '127.0.0.1:80', address: '127.0.0.1', port: 80, family: 'ipv4' },
152152
{ input: '127.0.0.1:443', address: '127.0.0.1', port: 443, family: 'ipv4' },
153153
{ input: '[::1]:80', address: '::1', port: 80, family: 'ipv6' },
154+
{ input: '[::1]:443', address: '::1', port: 443, family: 'ipv6' },
154155
];
155156

156157
good.forEach((i) => {

0 commit comments

Comments
 (0)