mjackson/mach

View on GitHub
modules/middleware/session/__tests__/RedisStore-test.js

Summary

Maintainability
A
0 mins
Test Coverage
var RedisStore = require('../RedisStore');
var describeSessionStore = require('./describeSessionStore');

describe('RedisStore', function () {
  describeSessionStore(
    new RedisStore({
      secret: 'secret'
    }),
    process.env.WITH_REDIS !== '1'
  );
});