mirror of
https://github.com/dnote/dnote
synced 2026-03-15 15:05:51 +01:00
8 lines
201 B
Bash
Executable file
8 lines
201 B
Bash
Executable file
#!/bin/bash
|
|
# test-local.sh runs api tests using local setting
|
|
set -eux
|
|
|
|
basePath=$GOPATH/src/github.com/dnote/dnote/server/api
|
|
|
|
export $(cat "$basePath"/.env.test | xargs)
|
|
"$basePath"/scripts/test.sh
|