(t *testing.T)
| 153 | } |
| 154 | |
| 155 | func TestVectorGraphQLAddVectorPredicate(t *testing.T) { |
| 156 | require.NoError(t, client.DropAll()) |
| 157 | |
| 158 | hc, err := dc.HTTPClient() |
| 159 | require.NoError(t, err) |
| 160 | hc.LoginIntoNamespace("groot", "password", 0) |
| 161 | // add schema |
| 162 | require.NoError(t, hc.UpdateGQLSchema(fmt.Sprintf(graphQLVectorSchema, "euclidean"))) |
| 163 | } |
| 164 | |
| 165 | func TestVectorSchema(t *testing.T) { |
| 166 | require.NoError(t, client.DropAll()) |
nothing calls this directly
no test coverage detected