UNPKG

find-my-way

Version:

Crazy fast http radix based router

17 lines (12 loc) 398 B
'use strict' const { test } = require('node:test') const FindMyWay = require('..') test('find calls can pass no constraints', t => { t.plan(3) const findMyWay = FindMyWay() findMyWay.on('GET', '/a', () => {}) findMyWay.on('GET', '/a/b', () => {}) t.assert.ok(findMyWay.find('GET', '/a')) t.assert.ok(findMyWay.find('GET', '/a/b')) t.assert.ok(!findMyWay.find('GET', '/a/b/c')) })