From f2886e6da8a4252da1ff1e17f7fd1d247acfe565 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Tue, 12 Jul 2022 11:57:46 +0530 Subject: [PATCH] fix: disable other db test for quick test --- server/test/resolvers_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/test/resolvers_test.go b/server/test/resolvers_test.go index 399ae84..3c83b58 100644 --- a/server/test/resolvers_test.go +++ b/server/test/resolvers_test.go @@ -13,10 +13,10 @@ import ( func TestResolvers(t *testing.T) { databases := map[string]string{ - // constants.DbTypeSqlite: "../../data.db", + constants.DbTypeSqlite: "../../data.db", // constants.DbTypeArangodb: "http://localhost:8529", - // constants.DbTypeMongodb: "mongodb://localhost:27017", - constants.DbTypeScyllaDB: "127.0.0.1:9042", + // constants.DbTypeMongodb: "mongodb://localhost:27017", + // constants.DbTypeScyllaDB: "127.0.0.1:9042", } testDb := "authorizer_test"