forked from SoumyaEXE/3d-Solar-System-ThreeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-modules.js
More file actions
18 lines (15 loc) · 828 Bytes
/
Copy pathtest-modules.js
File metadata and controls
18 lines (15 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* test-modules.js - Simple test to verify our modular system works
*/
// Test that our modules can be imported without errors
import { SceneManager } from './src/core/SceneManager.js';
import { CelestialBodyManager } from './src/components/CelestialBodyManager.js';
import { AsteroidBeltManager } from './src/components/AsteroidBeltManager.js';
import { RealObjectsManager } from './src/components/RealObjectsManager.js';
import { UIControlsManager } from './src/components/UIControlsManager.js';
import { AnimationManager } from './src/core/AnimationManager.js';
import { SolarSystemApp } from './src/main.js';
console.log('✅ All modules imported successfully!');
console.log('🚀 Modular system is ready to use');
// You can run this test by opening the browser console and running:
// import('./test-modules.js')