qgenutils
Version:
A security-first Node.js utility library providing authentication, HTTP operations, URL processing, validation, datetime formatting, and template rendering. Designed as a lightweight alternative to heavy npm packages with comprehensive error handling and
10 lines (9 loc) • 374 B
JavaScript
// No-op Jest setup for environments without a full src/app implementation.
// This prevents test runners from attempting to start an application server
// during unit tests that only exercise library code.
beforeAll(() => {
// Intentionally empty: avoid starting servers in test environment
});
afterAll(() => {
// Intentionally empty: cleanup is not required here
});