diff --git a/pkg/modules/auth/openid/main_test.go b/pkg/modules/auth/openid/main_test.go index d461e74df..17f1f402f 100644 --- a/pkg/modules/auth/openid/main_test.go +++ b/pkg/modules/auth/openid/main_test.go @@ -20,11 +20,15 @@ import ( "os" "testing" + "code.vikunja.io/api/pkg/files" + "code.vikunja.io/api/pkg/models" "code.vikunja.io/api/pkg/user" ) // TestMain is the main test function used to bootstrap the test env func TestMain(m *testing.M) { user.InitTests() + files.InitTests() + models.SetupTests() os.Exit(m.Run()) }