From 21d79475e3866e17c74d0ade6340425364b9614f Mon Sep 17 00:00:00 2001 From: gnuxie Date: Mon, 27 Sep 2021 11:53:29 +0100 Subject: [PATCH] Add manual launch script for working with mx-tester --- test/integration/manualLaunchScript.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/integration/manualLaunchScript.ts 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() +})();