Skip to main content
Glama
no-warnings.test.js1.77 kB
'use strict' const { test } = require('node:test') const { spawnSync } = require('node:child_process') const { resolve } = require('node:path') const entry = resolve(__dirname, '../examples', 'example.js') test('--no-warnings is set in cli', t => { t.plan(1) const child = spawnSync(process.execPath, [ '--no-warnings', entry ]) const stderr = child.stderr.toString() t.assert.deepStrictEqual(stderr, '') }) test('--no-warnings is not set in cli', t => { t.plan(1) const child = spawnSync(process.execPath, [ entry ]) const stderr = child.stderr.toString() t.assert.match(stderr, /\[CUSTDEP001\] DeprecationWarning: This is a deprecation warning/) }) test('NODE_NO_WARNINGS is set to 1', t => { t.plan(1) const child = spawnSync(process.execPath, [ entry ], { env: { NODE_NO_WARNINGS: '1' } }) const stderr = child.stderr.toString() t.assert.deepStrictEqual(stderr, '') }) test('NODE_NO_WARNINGS is set to 0', t => { t.plan(1) const child = spawnSync(process.execPath, [ entry ], { env: { NODE_NO_WARNINGS: '0' } }) const stderr = child.stderr.toString() t.assert.match(stderr, /\[CUSTDEP001\] DeprecationWarning: This is a deprecation warning/) }) test('NODE_NO_WARNINGS is not set', t => { t.plan(1) const child = spawnSync(process.execPath, [ entry ]) const stderr = child.stderr.toString() t.assert.match(stderr, /\[CUSTDEP001\] DeprecationWarning: This is a deprecation warning/) }) test('NODE_Options contains --no-warnings', t => { t.plan(1) const child = spawnSync(process.execPath, [ entry ], { env: { NODE_OPTIONS: '--no-warnings' } }) const stderr = child.stderr.toString() t.assert.deepStrictEqual(stderr, '') })

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