test_simple.mjs 380 B

1234567891011
  1. import { CredentialManagerFactory } from './dist/index.js';
  2. console.log('Testing credential manager...');
  3. try {
  4. const manager = CredentialManagerFactory.createCredentialManager();
  5. console.log('✅ CredentialManager created successfully');
  6. console.log('✅ All TypeScript compilation and exports working');
  7. } catch (error) {
  8. console.error('❌ Error:', error.message);
  9. }