diff --git a/test/shell.mjs b/test/shell.mjs index 9c55e2cb..71fc6d93 100644 --- a/test/shell.mjs +++ b/test/shell.mjs @@ -118,6 +118,8 @@ describe("shell", function () { const downArrow = "\x1b[B"; it("can keep track of history", async function () { + registerHomedir(container, "track-history"); + // start the shell const runPromise = run(`shell --secret "secret" --typecheck`, container); @@ -155,6 +157,8 @@ describe("shell", function () { }); it("can clear history", async function () { + registerHomedir(container, "clear-history"); + // start the shell const runPromise = run(`shell --secret "secret" --typecheck`, container);