diff --git a/tests/server/TestConfig.js b/tests/server/TestConfig.js index 53d037dfabc..8bd5275ac9d 100644 --- a/tests/server/TestConfig.js +++ b/tests/server/TestConfig.js @@ -8,6 +8,11 @@ describe('Config', () => { process.env.NODE_ENV = 'production'; }); + it('should not ever have disableSSR set to true', () => { + const config = requireUncached('config'); + assert.equal(config.get('disableSSR'), false); + }); + it('should provide a production config by default', () => { process.env.NODE_ENV = 'production'; const config = requireUncached('config');