mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import * as mjolnirTesting from './mjolnirTesting';
|
|
|
|
switch (process.argv[2]) {
|
|
case 'up':
|
|
mjolnirTesting.upHarness();
|
|
break;
|
|
case 'down':
|
|
mjolnirTesting.downHarness();
|
|
break;
|
|
} |