From 44289a93a2d82cf44b7c414d73c0341182c358f3 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Thu, 2 Oct 2025 20:51:21 +0300 Subject: [PATCH] disable installer when running tests --- tests/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/app.go b/tests/app.go index d951753c..5299e806 100644 --- a/tests/app.go +++ b/tests/app.go @@ -147,6 +147,7 @@ func NewTestAppWithConfig(config core.BaseAppConfig) (*TestApp, error) { t.OnServe().Bind(&hook.Handler[*core.ServeEvent]{ Func: func(e *core.ServeEvent) error { t.registerEventCall("OnServe") + e.InstallerFunc = nil // https://github.com/pocketbase/pocketbase/discussions/7202 return e.Next() }, Priority: -99999,