Skip to main content
Glama
on-ready-timeout-await.test.js881 B
'use strict' /* eslint no-prototype-builtins: off */ const { test } = require('tap') const boot = require('../boot') test('onReadyTimeout', async (t) => { const app = boot({}, { timeout: 10, // 10 ms autostart: false }) app.use(function one (innerApp, opts, next) { t.pass('loaded') innerApp.ready(function readyNoResolve (err, done) { t.notOk(err) t.pass('first ready called') // Do not call done() to timeout }) next() }) await app.start() try { await app.ready() t.fail('should throw') } catch (err) { t.equal(err.message, 'Plugin did not start in time: \'readyNoResolve\'. You may have forgotten to call \'done\' function or to resolve a Promise') // And not Plugin did not start in time: 'bound _encapsulateThreeParam'. You may have forgotten to call 'done' function or to resolve a Promise } })

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