From eeca66574b1faae65749df3cda83dcf79d819797 Mon Sep 17 00:00:00 2001 From: "Peter.Morton" Date: Fri, 24 Apr 2026 22:18:23 -0500 Subject: [PATCH] Adding opencode files --- test-crypto-global.mjs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 test-crypto-global.mjs diff --git a/test-crypto-global.mjs b/test-crypto-global.mjs deleted file mode 100644 index 822b4a0..0000000 --- a/test-crypto-global.mjs +++ /dev/null @@ -1,11 +0,0 @@ -// Test that crypto is available globally (Node.js Web Crypto API) -// Note: crypto is natively available in Node.js, no need to import server.js - -// Should have crypto available -if (globalThis.crypto && globalThis.crypto.randomUUID) { - const uuid = globalThis.crypto.randomUUID(); - process.stdout.write(`✅ crypto is available globally: ${uuid}\n`); -} else { - process.stdout.write('❌ crypto is NOT available globally\n'); - process.exit(1); -}