Files
elysia-swagger/test/node/cjs/index.js
2023-06-04 16:19:12 +02:00

12 lines
282 B
JavaScript

if ('Bun' in globalThis) {
throw new Error('❌ Use Node.js to run this test!');
}
const { swagger } = require('@elysiajs/swagger');
if (typeof swagger !== 'function') {
throw new Error('❌ CommonJS Node.js failed');
}
console.log('✅ CommonJS Node.js works!');