diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-05-02 17:08:43 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-05-02 17:08:43 +0200 |
| commit | 605230e032808155d62ed773cc551b5ae1847a5f (patch) | |
| tree | 69631dc8be99d65318d568900940ad9eaf8fe7f9 /src/config | |
| parent | fcbbc49687afeeecdc9388b367b1d7f2d0c76214 (diff) | |
Add error/empty cases for forums
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/__mocks__/config.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/config/__mocks__/config.js b/src/config/__mocks__/config.js index 0cd8b97..b70ee31 100644 --- a/src/config/__mocks__/config.js +++ b/src/config/__mocks__/config.js @@ -1,7 +1,15 @@ export const apollo = { uri: 'http://localhost:1234/graphql', name: 'COOL_APP', - version: '9.9.9' + version: '9.9.9', + defaultOptions: { + watchQuery: { + fetchPolicy: 'no-cache' + }, + query: { + fetchPolicy: 'no-cache' + } + } }; export const version = '9.9.9'; |