mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
* Migrate uuids of books that already exist in server * Remove actions * Add dirty flag for notes and books * Drop actions table * Implement sync * Add debug * Update uuid after posting resources to the server * Fix dev script
11 lines
252 B
Bash
Executable file
11 lines
252 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
|
|
|