Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
569 B
JavaScript
15 lines
569 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const _1 = require(".");
|
|
describe('getGlobal()', () => {
|
|
it('should return true if Buffer is present in globalThis', () => {
|
|
expect((0, _1.getGlobal)().Buffer).toBe(true);
|
|
});
|
|
it('should return false if Buffer is not present in globalThis', () => {
|
|
const bufferImp = global.Buffer;
|
|
delete global.Buffer;
|
|
expect((0, _1.getGlobal)().Buffer).toBe(false);
|
|
global.Buffer = bufferImp;
|
|
});
|
|
});
|
|
//# sourceMappingURL=get-global.util.spect.js.map
|