You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-01 16:46:54 +03:00
21 lines
490 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|