diff --git a/tests/node/tests/nodeApi.mjs b/tests/node/tests/nodeApi.mjs index 52f79330..71a16903 100644 --- a/tests/node/tests/nodeApi.mjs +++ b/tests/node/tests/nodeApi.mjs @@ -136,7 +136,7 @@ TestRegister.addApiTests([ it("chef.help: returns multiple results", () => { const result = chef.help("base 64"); - assert.strictEqual(result.length, 11); + assert.strictEqual(result.length, 13); }), it("chef.help: looks in description for matches too", () => { diff --git a/tests/operations/tests/Base91.mjs b/tests/operations/tests/Base91.mjs index be962280..a390192a 100644 --- a/tests/operations/tests/Base91.mjs +++ b/tests/operations/tests/Base91.mjs @@ -16,7 +16,18 @@ TestRegister.addTests([ recipeConfig: [ { op: "From Base91", - args: ["A-Za-z0-9!#$%&()*+,./:;<=>?@[]^_`{|}~""], + args: ["A-Za-z0-9!#$%&()*+,./:;<=>?@[]^_`{|}~\""], + }, + ], + }, + { + name: "To Base91: First", + input: "idevlab", + expectedOutput: "lM_1Z?@[]^_`{|}~\""], }, ], },