@andy1li hi! I’m having the same issue with #qp2. Autocomplete tests pass, but the redirect to the file from a non-existing directory fails. I’m having trouble reproducing this scenario locally because it seems working, unless there are some interesting assertions in the test that I can’t figure out based on the plain error message.
Here is the output from my shell
$ cat /tmp/foo/baz.md
cat: /tmp/foo/baz.md: No such file or directory
$ ls /tmp/foo
ls: /tmp/foo: No such file or directory
$ ls -1 nonexistent >> /tmp/foo/baz.md
ls: nonexistent: No such file or directory
$ cat /tmp/foo/baz.md
$ ls /tmp/foo
baz.md
$
I also pushed my repo to GH as you’ve mentioned above. Thanks for any hints.