Skip to content

Commit a6450a6

Browse files
committed
Fix release installer interaction test
1 parent a511ccc commit a6450a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/install-interaction.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Deno.test("install.sh recognizes newly installed Snip for filter setup before sh
2020
const fixture = await createFixture();
2121
const filterLog = join(fixture.root, "filter.log");
2222
try {
23-
const result = await runInstallerInPseudoTty(fixture, "n\n\n", { extraEnv: { WLD_FILTER_LOG: filterLog } });
23+
const result = await runInstallerInPseudoTty(fixture, "\nn\n", { extraEnv: { WLD_FILTER_LOG: filterLog } });
2424
assertEquals(result.code, 0, `${result.stdout}\n${result.stderr}`);
2525
assertStringIncludes(result.stdout, "RunWield Deno Snip filters installed");
2626
const log = await Deno.readTextFile(filterLog);

0 commit comments

Comments
 (0)