mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
13 lines
234 B
Bash
Executable file
13 lines
234 B
Bash
Executable file
#!/bin/bash
|
|
# shellcheck disable=SC1090
|
|
# test-local.sh runs api tests using local setting
|
|
set -eux
|
|
|
|
basePath=$GOPATH/src/github.com/dnote/dnote/pkg/server/api
|
|
|
|
|
|
set -a
|
|
source "$basePath"/.env.test
|
|
set +a
|
|
|
|
"$basePath"/scripts/test.sh
|