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