dnote/scripts/test.sh
Sung Won Cho 14b0cf623f
Find command (#149)
* Implement basic full text search

* Avoid lag in log while making network calls

* Allow to restrict search by book name
2019-01-01 14:59:57 +11:00

12 lines
272 B
Bash
Executable file

#!/bin/bash
# run_server_test.sh runs server test files sequentially
# https://stackoverflow.com/questions/23715302/go-how-to-run-tests-for-multiple-packages
# clear tmp dir in case not properly torn down
rm -rf ./tmp
# run test
go test ./... \
-p 1\
--tags "fts5"