| 1 2 3 4 5 6 7 8 9 10 11 | 1× 1× 1× 1× 1× | const RedisStore = require("../RedisStore");
const describeSessionStore = require("./describeSessionStore");
const config = require("../../../../config");
describe("RedisStore", function () {
describeSessionStore(
new RedisStore({secret: "secret"}),
config.withRedis !== "1"
);
});
|