1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-01 16:46:54 +03:00
Files
node-redis/packages/graph/lib/test-utils.ts
2024-09-29 13:19:06 +03:00

21 lines
490 B
TypeScript

import TestUtils from '@redis/test-utils';
import RedisGraph from '.';
export default new TestUtils({
dockerImageName: 'redislabs/redisgraph',
dockerImageVersionArgument: 'redisgraph-version'
});
export const GLOBAL = {
SERVERS: {
OPEN: {
serverArguments: ['--loadmodule /usr/lib/redis/modules/redisgraph.so'],
clientOptions: {
modules: {
graph: RedisGraph
}
}
}
}
};