Skip to main content
Glama
issue-110.test.js806 B
'use strict' const { test } = require('node:test') const FindMyWay = require('../') test('Nested static parametric route, url with parameter common prefix > 1', t => { t.plan(1) const findMyWay = FindMyWay({ defaultRoute: (req, res) => { t.assert.fail('Should not be defaultRoute') } }) findMyWay.on('GET', '/api/foo/b2', (req, res) => { res.end('{"message":"hello world"}') }) findMyWay.on('GET', '/api/foo/bar/qux', (req, res) => { res.end('{"message":"hello world"}') }) findMyWay.on('GET', '/api/foo/:id/bar', (req, res) => { res.end('{"message":"hello world"}') }) findMyWay.on('GET', '/foo', (req, res) => { res.end('{"message":"hello world"}') }) t.assert.deepEqual(findMyWay.find('GET', '/api/foo/b-123/bar').params, { id: 'b-123' }) })

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