Skip to content

Commit 78bf2f8

Browse files
committed
Revert "Skip test impl"
This reverts commit 1730550.
1 parent e8c631e commit 78bf2f8

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

test/senso/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-env mocha */
2-
const { wait, startDriver, connectWS, expectEvent, skipTestOnMacOSinCI } = require('../utils')
2+
const { wait, startDriver, connectWS, expectEvent } = require('../utils')
33
const expect = require('chai').expect
44

55
const mock = require('./mock')
@@ -213,8 +213,6 @@ describe('Basic functionality', () => {
213213
})
214214

215215
it('Can discover mock Senso', async function () {
216-
// bonjour / mDNS does not seem to work on Github's macOS runners
217-
skipTestOnMacOSinCI(this)
218216
this.timeout(6000)
219217

220218
// connect with Senso WS

test/utils.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,5 @@ module.exports = {
4848
}
4949
})
5050
})
51-
},
52-
53-
skipTestOnMacOSinCI: function (test) {
54-
const isMac = process.platform === 'darwin'
55-
const isGitHubActions = process.env.GITHUB_ACTIONS === 'true'
56-
57-
if (isMac && isGitHubActions) {
58-
test.skip()
59-
}
6051
}
6152
}

0 commit comments

Comments
 (0)