dnote/scripts/e2e/test.sh
Sung f6a4c6344c
Remove public from CLI (#703)
* Remove public from CLI

* Write migration and test

* Use in-memory db for a test server

* Simplify CLI test db teardown

* Restructure packages to reduce duplication
2025-10-25 20:51:57 -07:00

9 lines
167 B
Bash
Executable file

#!/bin/bash
set -eux
dir=$(dirname "${BASH_SOURCE[0]}")
basePath=$(realpath "$dir/../../")
pushd "$basePath"/pkg/e2e
go test --tags "fts5" ./... -v -timeout 5m
popd