Added Decode VBE

This commit is contained in:
bwhitn 2017-08-27 09:29:26 -04:00
parent d012fd3a65
commit fdc8a15595
5 changed files with 290 additions and 1 deletions

View file

@ -24,6 +24,7 @@ import "./tests/operations/Image.js";
import "./tests/operations/MorseCode.js";
import "./tests/operations/StrUtils.js";
import "./tests/operations/SeqUtils.js";
import "./tests/operations/VBE.js"
let allTestsPassing = true;
const testStatusCounts = {

View file

@ -0,0 +1,22 @@
/**
* CharEnc tests.
*
* @author tlwr [toby@toby.codes]
* @copyright Crown Copyright 2017
* @license Apache-2.0
*/
import TestRegister from "../../TestRegister.js";
TestRegister.addTests([
{
name: "VBE Decode",
input: "##@~^DgAAAA==\\ko$K6,JCV^GJqAQAAA==^#~@",
expectedOutput: "MsgBox \"Hello\"",
recipeConfig: [
{
"op": "Decode VBE",
"args": []
},
],
},
]);