mirror of
https://github.com/zoriya/elysia-swagger.git
synced 2025-12-06 00:36:10 +00:00
12 lines
282 B
JavaScript
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!');
|