mirror of
https://github.com/dnote/dnote
synced 2026-03-16 07:25:49 +01:00
9 lines
167 B
Bash
Executable file
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
|