Fix unit test for Base91 operations

Update chef.help() test to expect 15 results instead of 13
due to the addition of Base91 operations (ToBase91 and FromBase91)
which are now included when searching for 'base 64'.
This commit is contained in:
Izai Alejandro Zalles Merino 2025-10-01 12:35:59 -04:00
parent aa4bb2b415
commit d6ec7639b0

View file

@ -136,7 +136,7 @@ TestRegister.addApiTests([
it("chef.help: returns multiple results", () => {
const result = chef.help("base 64");
assert.strictEqual(result.length, 13);
assert.strictEqual(result.length, 15);
}),
it("chef.help: looks in description for matches too", () => {