godaddy / ekke

Ekke is a test runner for React-Native, it allows you to execute your test code directly on the device enabling you to test in the same environment as your production users.
MIT License
133 stars 9 forks source link

Use a custom path for the Metro cache #11

Closed 3rd-Eden closed 5 years ago

3rd-Eden commented 5 years ago

We currently share the Metro cache with every React-Native application that is installed on the users' system as we inherit the default configuration from the metro-config module. This means when we start our tests and clear the cache (which is enabled by default), we also clear the cache of our host application. This can be easily solved if we use a custom cache location.

Acceptance Criteria