pi-test-data
Version:
Manage test data for automation
20 lines (14 loc) • 407 B
JavaScript
const t = require('tap')
const test = t.test
const FindMyWay = require('..')
test('Set method property when splitting node', t => {
t.plan(1)
const findMyWay = FindMyWay()
function handler (req, res, params) {
t.pass()
}
findMyWay.on('GET', '/health-a/health', handler)
findMyWay.on('GET', '/health-b/health', handler)
t.notMatch(findMyWay.prettyPrint(), /undefined/)
})