You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suggest to update the documentation to give **.tmp as an example. That will match /foo/bar/demo.tmp as well.
The second reason is that beholder will return java.nio.file.Path and not java.io.Filewhich wait-and-rescan! expects. This will lead to a NullPointerException.
I have written a pull request that fixes this.
Thanks again for a great project!
Kind regards
Ivar
The text was updated successfully, but these errors were encountered:
Hi, and thanks for a great and useful project!
I noticed that adding
:kaocha.watch/ignore ["*.tmp"]
intests.edn
did not work as intended. As far as I can see there are two reasons for that:*.tmp
will only match files in the current directory.beholder
returns fully qualified names (on both mac and linux).thus:
I suggest to update the documentation to give
**.tmp
as an example. That will match/foo/bar/demo.tmp
as well.The second reason is that
beholder
will returnjava.nio.file.Path
and notjava.io.File
whichwait-and-rescan!
expects. This will lead to a NullPointerException.I have written a pull request that fixes this.
Thanks again for a great project!
Kind regards
Ivar
The text was updated successfully, but these errors were encountered: