all files / modules/middleware/session/__tests__/ RedisStore-test.js

100% Statements 4/4
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10            
const RedisStore = require("../RedisStore");
const describeSessionStore = require("./describeSessionStore");
 
describe("RedisStore", function () {
    describeSessionStore(
    new RedisStore({secret: "secret"}),
    process.env.WITH_REDIS !== "1"
  );
});