mjolnir/test/integration/manualLaunchScript.ts
Gnuxie 21aabc879a
Stop the config being global (in almost all contexts). (#334)
* Stop the config being global (in almost all contexts).

* make sure unit test has a config

* Make failing word list more visible

* Only use Healthz from index.ts

Not really sure how useful it is anyways?
2022-08-09 11:29:27 +01:00

12 lines
331 B
TypeScript

/**
* 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";
import config from '../../src/config';
(async () => {
let mjolnir = await makeMjolnir(config);
await mjolnir.start();
})();