diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-22 22:58:52 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-22 22:58:52 +0200 |
| commit | 2a37b2ec11c46fc87dae084bc0a7659b198311aa (patch) | |
| tree | d9c74966dad4d2bc7b034d54305c8b1df1c75d3e /test_utils | |
| parent | 4e6be9f49b9697d9577014b3ee2b7988129823a9 (diff) | |
Mock config for tests
Treat it as an external... also, deals better with the
vite meta things
Diffstat (limited to 'test_utils')
| -rw-r--r-- | test_utils/config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test_utils/config.js b/test_utils/config.js new file mode 100644 index 0000000..4d58681 --- /dev/null +++ b/test_utils/config.js @@ -0,0 +1,11 @@ +/* + * Mocking the configuration, since we're treating it as an external + */ + +export const apollo = { + uri: 'http://MOCKED_CONFIG', + name: 'COOL_CLIENT', + version: '8.8.8' +}; + +export const version = '9.9.9'; |