Merged in bugfix/flakydb (pull request #21)

Bugfix/flakydb

* init

* fixenvvar

* fixtest
This commit is contained in:
Michael McGuinness
2025-01-14 17:28:26 +00:00
parent 9f9700a773
commit 7da57058d4
17 changed files with 103 additions and 82 deletions
+3 -1
View File
@@ -2,6 +2,8 @@ package server_test
import (
"context"
"os"
"path"
"queryorchestration/internal/server"
"queryorchestration/internal/test"
"testing"
@@ -18,7 +20,7 @@ func TestNew(t *testing.T) {
defer cleanup()
newCfg := &server.NewConfig{
BasePath: "../..",
BasePath: path.Join(os.Getenv("PWD"), "../.."),
}
cfg := server.New(ctx, newCfg)