diff --git a/test/integration/manualLaunchScript.ts b/test/integration/manualLaunchScript.ts new file mode 100644 index 0000000..ccc6aab --- /dev/null +++ b/test/integration/manualLaunchScript.ts @@ -0,0 +1,10 @@ +/** + * This file is used to launch mjolnir for manual testing, creating a user and management room automatically if it doesn't already exist. + */ + +import { makeMjolnir } from "./mjolnirSetupUtils"; + +(async () => { + let mjolnir = await makeMjolnir(); + await mjolnir.start() +})();