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