This commit is contained in:
2026-01-20 01:05:17 +01:00
parent e4d01bc480
commit cbb2b64f92
5846 changed files with 1687 additions and 4494 deletions

15
scripts/test-electron.js Normal file
View File

@@ -0,0 +1,15 @@
// Simple test to check if electron module loads correctly
try {
const electron = require('electron');
console.log('✅ Electron type:', typeof electron);
console.log('✅ Electron value:', electron);
if (typeof electron === 'object') {
console.log('✅ electron.app:', typeof electron.app);
console.log('✅ electron.BrowserWindow:', typeof electron.BrowserWindow);
} else {
console.log('❌ Electron is not an object, it is:', typeof electron);
}
} catch (err) {
console.error('❌ Error loading electron:', err);
}