You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-01 16:46:54 +03:00
* chore: update Redis version from 8.2-RC1-pre to 8.2-rc1 * feat: implement XDELEX command for Redis 8.2 * feat: implement XACKDEL command for Redis 8.2 * refactor: create shared stream deletion types for Redis 8.2 commands * feat: add Redis 8.2 deletion policies to XTRIM command * feat: add Redis 8.2 deletion policies to XADD commands * fix: correct XDELEX command method name and test parameter
22 lines
425 B
TypeScript
22 lines
425 B
TypeScript
import TestUtils from '@redis/test-utils';
|
|
import TimeSeries from '.';
|
|
|
|
export default TestUtils.createFromConfig({
|
|
dockerImageName: 'redislabs/client-libs-test',
|
|
dockerImageVersionArgument: 'redis-version',
|
|
defaultDockerVersion: '8.2-rc1'
|
|
});
|
|
|
|
export const GLOBAL = {
|
|
SERVERS: {
|
|
OPEN: {
|
|
serverArguments: [],
|
|
clientOptions: {
|
|
modules: {
|
|
ts: TimeSeries
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|