mirror of
https://github.com/dnote/dnote
synced 2026-03-15 15:05:51 +01:00
12 lines
233 B
Bash
Executable file
12 lines
233 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
|
|
|
|
set -a
|
|
source "$basePath/.env.test"
|
|
set +a
|
|
|
|
"$basePath/api/scripts/test.sh"
|