buggood first issuehelp wanted
説明
If you start the houndd server, /db becomes populated with the contents of other repos. Both jest and go test currently crawl over /db and get confused by it, usually because there are naming collisions.
I think three things would make this a little better:
make cleanshould also emptydb/.jestshould ignoredb/, which seems easy to do in ajest-config.jsfile.go testshould ignoredb, which seems like we have to do manually, by using something likego test 'go list ./... | grep -v directoriesToSkip\`(I got that example from stack overflow).
A band-aid could be to just do 1 above and then run it before we run tests. That doesn't seem ideal, though, because we'd have to re-install node_modules between make clean and running the tests.