Added messagepack tests but they don't work

and i'm too burnt out to figure out why
This commit is contained in:
Matt C 2018-08-20 00:20:04 +01:00
parent 0c06e64051
commit 821dd9c48c
2 changed files with 71 additions and 11 deletions

View file

@ -36,7 +36,7 @@ class FromMessagePack extends Operation {
try {
return notepack.decode(input);
} catch (err) {
throw new OperationError(`Could not decode MessagePack to JSON:MessagePack ${err}`);
throw new OperationError(`Could not decode MessagePack to JSON: ${err}`);
}
}