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

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!');