init.agi 317 B

1234567891011121314151617
  1. /*
  2. Unit Testing Module for AGI
  3. */
  4. //Define the launchInfo for the module
  5. var moduleLaunchInfo = {
  6. Name: "Unit Tester",
  7. Group: "Development",
  8. IconPath: "UnitTest/img/small_icon.png",
  9. Version: "1.0",
  10. StartDir: "UnitTest/index.html"
  11. }
  12. //Register the module
  13. registerModule(JSON.stringify(moduleLaunchInfo));