diff --git a/package.json b/package.json index b8b1d27..facce6b 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,8 @@ "setupTestFrameworkScriptFile": "/test-setup.js", "snapshotSerializers": [ "enzyme-to-json/serializer" - ] + ], + "testEnvironment": "node" }, "nodemonConfig": { "ignore": [ diff --git a/src/helpers/withData.js b/src/helpers/withData.js index 38706de..e92f690 100644 --- a/src/helpers/withData.js +++ b/src/helpers/withData.js @@ -83,7 +83,7 @@ export default (ComposedComponent) => { // render within `getInitialProps()` above (since the entire prop tree // will be initialized there), meaning the below will only ever be // executed on the client. - this.apollo = initApollo(this.props.serverState.apollo.data, { + this.apollo = initApollo({}, { getToken: () => parseCookies(), // ['connect.sid'], }); }