dnote/scripts/e2e/test.sh
2025-09-28 22:25:34 -07:00

13 lines
212 B
Bash
Executable file

#!/bin/bash
set -eux
dir=$(dirname "${BASH_SOURCE[0]}")
basePath=$(realpath "$dir/../../")
set -a
source "$basePath/pkg/server/.env.test"
set +a
pushd "$basePath"/pkg/e2e
go test --tags "fts5" ./... -p 1
popd