From 818790650ac9a236cd984e7f53f07863cbd960cc Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Sat, 1 Jan 2022 08:41:44 +0530 Subject: [PATCH] fix: enable test for mongo & arango --- 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 c307fc4..17f0846 100644 --- a/server/__test__/resolvers_test.go +++ b/server/__test__/resolvers_test.go @@ -11,9 +11,9 @@ import ( func TestResolvers(t *testing.T) { databases := map[string]string{ - enum.Sqlite.String(): "../../data.db", - // enum.Arangodb.String(): "http://root:root@localhost:8529", - // enum.Mongodb.String(): "mongodb://localhost:27017", + enum.Sqlite.String(): "../../data.db", + enum.Arangodb.String(): "http://root:root@localhost:8529", + enum.Mongodb.String(): "mongodb://localhost:27017", } for dbType, dbURL := range databases {