Skip to content

Commit

Permalink
fixup! test: skip IPv6 multicast test on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Apr 23, 2022
1 parent bda7c45 commit b30e581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ describe('server', function () {

testVector.forEach(({ addressType, multicastAddress, type }) => {
it(`receive ${addressType} CoAP message`, function (done) {
if (process.platform === 'darwin') {
if (addressType === 'IPv6' && process.platform === 'darwin') {
// FIXME: IPv6 multicast seems to have problems on macos
// at the moment
this.skip()
Expand Down

0 comments on commit b30e581

Please sign in to comment.