Skip to main content
Glama
issue-240.test.js1.32 kB
'use strict' const { test } = require('node:test') const FindMyWay = require('../') test('issue-240: .find matching', (t) => { t.plan(14) const findMyWay = FindMyWay({ ignoreDuplicateSlashes: true }) const fixedPath = function staticPath () {} const varPath = function parameterPath () {} findMyWay.on('GET', '/a/b', fixedPath) findMyWay.on('GET', '/a/:pam/c', varPath) t.assert.equal(findMyWay.find('GET', '/a/b').handler, fixedPath) t.assert.equal(findMyWay.find('GET', '/a//b').handler, fixedPath) t.assert.equal(findMyWay.find('GET', '/a/b/c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a//b/c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a///b/c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a//b//c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a///b///c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a/foo/c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a//foo/c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a///foo/c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a//foo//c').handler, varPath) t.assert.equal(findMyWay.find('GET', '/a///foo///c').handler, varPath) t.assert.ok(!findMyWay.find('GET', '/a/c')) t.assert.ok(!findMyWay.find('GET', '/a//c')) })

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/krtw00/search-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server