mjolnir/test/harness/launchScript.ts
2021-09-24 18:25:27 +01:00

10 lines
217 B
TypeScript

import * as mjolnirTesting from './mjolnirTesting';
switch (process.argv[2]) {
case 'up':
mjolnirTesting.upHarness();
break;
case 'down':
mjolnirTesting.downHarness();
break;
}