mirror of
https://github.com/dnote/dnote
synced 2026-03-15 23:15:50 +01:00
12 lines
216 B
Bash
Executable file
12 lines
216 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# shellcheck disable=SC1090
|
|
# test-local.sh runs api tests using local setting
|
|
set -eux
|
|
|
|
dir=$(dirname "${BASH_SOURCE[0]}")
|
|
|
|
set -a
|
|
source "$dir/../../pkg/server/.env.test"
|
|
set +a
|
|
|
|
"$dir/test.sh"
|