major refactoring

This commit is contained in:
Dave Horton
2020-01-25 11:47:33 -05:00
parent 621ea8c0f5
commit 4a1ea4e091
25 changed files with 947 additions and 933 deletions

View File

@@ -9,11 +9,11 @@
}
],
"transcribe": {
"action": "http://example.com/transcribe",
"transcriptionCallback": "http://example.com/transcribe",
"recognizer": {
"vendor": "google",
"language" : "en-US",
"mixType" : "stereo",
"dualChannel" : true,
"interim": true
}
}

View File

@@ -46,6 +46,8 @@ test('app payload parsing tests', (t) => {
t.end();
});
console.log('exiting');
const errInvalidInstruction = () => makeTask(logger, require('./data/bad/unknown-instruction'));
const errUnknownProperty = () => makeTask(logger, require('./data/bad/unknown-property'));