mirror of
https://github.com/zoriya/elysia-swagger.git
synced 2025-12-06 00:36:10 +00:00
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
if ('Bun' in globalThis) {
|
|
throw new Error('❌ Use Node.js to run this test!');
|
|
}
|
|
|
|
import { swagger } from '@elysiajs/swagger';
|
|
|
|
if (typeof swagger !== 'function') {
|
|
throw new Error('❌ ESM Node.js failed');
|
|
}
|
|
|
|
console.log('✅ ESM Node.js works!');
|