mirror of
https://github.com/dnote/dnote
synced 2026-03-15 06:55:49 +01:00
* Implement basic full text search * Avoid lag in log while making network calls * Allow to restrict search by book name
12 lines
272 B
Bash
Executable file
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"
|