homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
24 lines (17 loc) • 399 B
JavaScript
const t = require('tap')
const factory = require('../')
const noop = function () {}
t.test('issue-63', (t) => {
t.plan(2)
const fmw = factory()
t.throws(function () {
fmw.on('GET', '/foo/:id(a', noop)
})
try {
fmw.on('GET', '/foo/:id(a', noop)
t.fail('should fail')
} catch (err) {
t.is(err.message, 'Invalid regexp expression in "/foo/:id(a"')
}
})