Add integration test for #226

This commit is contained in:
David Dworken 2024-07-09 18:46:22 -07:00
parent e4b87f844a
commit 418f4ff3f9
No known key found for this signature in database

View File

@ -822,6 +822,15 @@ echo other`)
t.Fatalf("hishtory query has unexpected number of lines: out=%#v", out)
}
require.Contains(t, out, "/tmp")
// Record a command in a directory that does not exist
tester.RunInteractiveShell(t, `mkdir /tmp/deleted-test
cd /tmp/deleted-test
rm -rf /tmp/deleted-test
echo test2
`)
out = hishtoryQuery(t, tester, "echo test2")
require.Contains(t, out, "/tmp/deleted-test")
}
func testHishtoryBackgroundSaving(t *testing.T, tester shellTester) {