Skip to main content
Glama
issue-145.test.js872 B
'use strict' const { test } = require('node:test') const FindMyWay = require('../') test('issue-145', (t) => { t.plan(8) const findMyWay = FindMyWay({ ignoreTrailingSlash: 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/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