mjolnir/test/harness/launchScript.ts

10 lines
217 B
TypeScript
Raw Normal View History

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