mirror of
https://github.com/zoriya/elysia-swagger.git
synced 2026-05-06 20:52:25 +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!');
|