aerofly-missions
Version:
The Aerofly Missionsgerät converts simulator flight plan files for Aerofly FS 4, Microsoft Flight Simulator, X-Plane, GeoFS, and Garmin / Infinite Flight flight plan files. It also imports SimBrief flight plans.
42 lines (40 loc) • 2.15 kB
text/typescript
import { Tests } from "./Cli/Test.js";
import { LonLatDateTest } from "./Tests/LonLatDate.test.js";
import { LonLatAreaTest, LonLatTest } from "./Tests/LonLat.test.js";
import { MissionCheckpointTest } from "./Tests/MissionCheckpoint.test.js";
import { MissionConditionsTest } from "./Tests/MissionConditions.test.js";
import { MissionTest } from "./Tests/Mission.test.js";
import { GarminFplTest } from "./Tests/GarminFpl.test.js";
import { MsfsPlnTest } from "./Tests/MsfsPln.test.js";
import { XplaneFmsTest } from "./Tests/XplaneFms.test.js";
import { MainMcfTest } from "./Tests/MainMcf.test.js";
import { GpxTest } from "./Tests/Gpx.test.js";
import { GeoJsonImportTest } from "./Tests/GeoJsonImport.test.js";
import { QuoteTest } from "./Tests/Quote.test.js";
import { MissionListTest } from "./Tests/MissionList.test.js";
import { SimBriefTest } from "./Tests/SimBrief.test.js";
import { GeoFsTest } from "./Tests/GeoFs.test.js";
import { SeeYouCupTest } from "./Tests/SeeYouCup.test.js";
import { KeyholeMarkupLanguageTest } from "./Tests/KeyholeMarkupLanguage.test.js";
const dieOnError = false;
const tests = new Tests(process);
tests.add(new LonLatTest(process, dieOnError));
tests.add(new LonLatAreaTest(process, dieOnError));
tests.add(new MainMcfTest(process, dieOnError));
tests.add(new MissionTest(process, dieOnError));
tests.add(new MissionListTest(process, dieOnError));
tests.add(new MissionCheckpointTest(process, dieOnError));
tests.add(new MissionConditionsTest(process, dieOnError));
tests.add(new LonLatDateTest(process, dieOnError));
tests.add(new GarminFplTest(process, dieOnError));
tests.add(new MsfsPlnTest(process, dieOnError));
tests.add(new XplaneFmsTest(process, dieOnError));
tests.add(new GpxTest(process, dieOnError));
tests.add(new GeoJsonImportTest(process, dieOnError));
tests.add(new QuoteTest(process, dieOnError));
tests.add(new SimBriefTest(process, dieOnError));
// tests.add(await SimBriefTest.init(process, dieOnError));
tests.add(new GeoFsTest(process, dieOnError));
tests.add(new SeeYouCupTest(process, dieOnError));
tests.add(new KeyholeMarkupLanguageTest(process, dieOnError));
tests.exit();